aleo-std-cpu 1.0.3

Convenience method for retrieving CPU information
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# aleo-std-cpu

This crate uses `aleo-std-cpu` to implement convenience methods for retrieving CPU information.

Note: This crate only supports Intel and AMD chipsets. For performance reasons in snarkVM, M1 chips default to Intel.

```rust
fn foo() {
    // Prints the CPU name.
    println!("{:?}", aleo_std::get_cpu());
}
```