diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-07-09 18:04:08 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-07-09 18:04:08 -0700 |
| commit | d45e9b8c293fa1e04ede47af0007bc720f093413 (patch) | |
| tree | c1b27300f6e945c69360a1e23edad176af41673e /src/apple_silicon/Cargo.toml | |
| download | x-d45e9b8c293fa1e04ede47af0007bc720f093413.tar.gz | |
initial commit
```
[18:04] mba-fcuny:apple_silicon (main +) | cargo run
Compiling apple_silicon v0.1.0 (/Users/fcuny/workspace/apple_silicon)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.13s
Running `target/debug/apple_silicon`
our CPU is an Apple M2, and we have 8 cores, and 10 GPU cores
```
Diffstat (limited to '')
| -rw-r--r-- | src/apple_silicon/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/apple_silicon/Cargo.toml b/src/apple_silicon/Cargo.toml new file mode 100644 index 0000000..21b6242 --- /dev/null +++ b/src/apple_silicon/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "apple_silicon" +version = "0.1.0" +edition = "2021" + +[dependencies] +thiserror = "1.0.61" |
