This commit is contained in:
edoapra 2025-03-21 15:41:34 -07:00
parent 91503a117c
commit c34f6ed769
No known key found for this signature in database
GPG key ID: 9E6A0B70826967BA

View file

@ -1,9 +1,11 @@
#!/usr/bin/env bash
git clone https://github.com/pytorch/cpuinfo
git -q clone https://github.com/pytorch/cpuinfo
cd cpuinfo
mkdir build && cd build
cmake ..
make -j3
cmake .. >& cmake.log
tail -f cmake.log
make -j3 >& make.log
tail -3 make.log
./isa-info
./cpu-info
cd ../..