xref: /dpdk/buildtools/get-cpu-count.py (revision daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f)
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