5b6e3d8b54
88f2f771f Merge branch 'dev' 8623616e0 v6.61 1b911598d mingw uses __thread instead of __declspec(thread) d224701f4 fix movzx eax, ah on 64bit and test it 1c35e34ab Merge branch 'dev' 4fb0e58aa test of cpuid 913c798ff update doc 8f6dee319 v6.60.2 21419721e Merge branch 'Wunkolo-standalone-cpuid' into dev 1b2e7c7da Fix detection of `GFNI`,`VAES`, and `VPCLMULQDQ` git-subtree-dir: externals/xbyak git-subtree-split: 88f2f771f179a3d856ecd0b07a20598bd06ba21d
11 lines
271 B
Bash
Executable file
11 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
|
|
|