xref: /dpdk/buildtools/get-cpu-count.py (revision 03ab51eafda992874a48c392ca66ffb577fe2b71)
1#!/usr/bin/env python3
2# SPDX-License-Identifier: BSD-3-Clause
3# Copyright (c) 2021 PANTHEON.tech s.r.o.
4
5import os
6
7print(os.cpu_count())
8