mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
- sync output recursively for make calls - add a script to get the number of cpus on mac and linux - Makefile formatting - update serialize_targets.sh to invoke the proper make binary - Add instructions to install make
8 lines
94 B
Bash
Executable File
8 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ `uname` == "Darwin" ]]; then
|
|
sysctl -n hw.logicalcpu
|
|
else
|
|
nproc
|
|
fi
|