зеркало из https://github.com/mozilla/gecko-dev.git
6c3a233284
This change updates spirv-cross to a new version. Unlike the previous one, it now points to a SPIRV-Cross submodule in https://github.com/kvark/SPIRV-Cross behind "gecko3" branch, which will guarantee the rev to be accessible. Differential Revision: https://phabricator.services.mozilla.com/D75648 |
||
---|---|---|
.. | ||
ci/cgroups | ||
examples | ||
fixtures/cgroups | ||
src | ||
.cargo-checksum.json | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md |
README.md
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;
// count logical cores this process could try to use
let num = num_cpus::get();