mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 15:40:00 +01:00
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
make -C ../ test_util64
|
|
|
|
cpus=(p4p mrm pnr nhm wsm snb ivb hsw bdw slt slm glm glp tnt skl cnl icl skx clx cpx icx knl knm tgl adl spr)
|
|
for cpu in ${cpus[@]} ; do
|
|
echo $cpu
|
|
~/bin/sde -$cpu -- ../test_util64 -cpuid > tmp.txt
|
|
diff tmp.txt $cpu.txt
|
|
done
|
|
|