Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Firefox
/
third_party
/
rust
/
num_cpus
/ (
Browser von der Mozilla Stiftung
Version 136.0.1
©
) Datei vom 10.2.2025 mit Größe 595 B
Quelle README.md Sprache: unbekannt
# num_cpus
[](https://crates.io/c
rates/num_cpus)
[](https://github.com/seanmonstar/num_cpus/actions)
- [Documentation](
https://docs.rs/num_cpus)
- [CHANGELOG](CHANGELOG.md)
Count the number of CPUs on the current machine.
## Usage
Add to Cargo.toml:
```toml
[dependencies]
num_cpus = "1.0"
```
In your `main.rs` or `lib.rs`:
```rust
extern crate num_cpus;
// count logical cores this process could try to use
let num = num_cpus::get();
```
[ Dauer der Verarbeitung: 0.23 Sekunden (vorverarbeitet)
]
2026-04-02