mirror of
https://github.com/openharmony/third_party_rust_num_cpus.git
synced 2026-07-01 20:44:00 -04:00
685 B
685 B
num_cpus
Count the number of CPUs on the current machine.
Usage
Add to Cargo.toml:
[dependencies]
num_cpus = "1.0"
In your main.rs or lib.rs:
extern crate num_cpus;
// elsewhere
let num = num_cpus::get();