mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
8 lines
95 B
Bash
Executable File
8 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $(uname) == "Darwin" ]]; then
|
|
sysctl -n hw.logicalcpu
|
|
else
|
|
nproc
|
|
fi
|