Home
last modified time | relevance | path

Searched refs:get_physical (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/num_cpus/
DCHANGELOG.md12 - implement `get_physical` on OpenBSD
29 - fix `get_physical` count with AMD hyperthreading.
60 - add `get_physical` support for macOS
82 - `get_physical` gains Windows support
112 - fixes `get_physical` count (454ff1b)
125 - added `get_physical` function to return number of physical CPUs found
/external/rust/crates/num_cpus/examples/
Dvalues.rs5 println!("Physical CPUs: {}", num_cpus::get_physical()); in main()
/external/rust/crates/num_cpus/src/
Dlib.rs105 pub fn get_physical() -> usize { in get_physical() function
448 let num = super::get_physical(); in test_get_physical()