Update TEST_MAPPING Test: None Change-Id: Ied4ce86e0daa269739afb2494948f1a4c7c178d2
Count the number of CPUs on the current machine.
Add to Cargo.toml:
[dependencies] num_cpus = "1.0"
In your main.rs or lib.rs:
main.rs
lib.rs
extern crate num_cpus; // count logical cores this process could try to use let num = num_cpus::get();