aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2023-02-20 14:54:52 +0900
committerMITSUNARI Shigeo <[email protected]>2023-02-20 14:54:52 +0900
commit740dff2e866f3ae1a70dd42d6e8836847ed95cc2 (patch)
tree2a0f7162d6a9b5dfd4f5dbd259003d224709358d /sample
parenta1ac3750f9a639b5a6c6d6c7da4259b8d6790989 (diff)
parentdc048a04cb9923d9f9a5d0910e4f0556f7557289 (diff)
downloadxbyak-740dff2e866f3ae1a70dd42d6e8836847ed95cc2.tar.gz
xbyak-740dff2e866f3ae1a70dd42d6e8836847ed95cc2.zip
Merge branch 'dev'v6.69
Diffstat (limited to 'sample')
-rw-r--r--sample/test_util.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp
index 96e9d21..4a8dbc7 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -88,6 +88,8 @@ void putCPUinfo(bool onlyCpuidFeature)
{ Cpu::tCLDEMOTE, "cldemote" },
{ Cpu::tMOVDIRI, "movdiri" },
{ Cpu::tMOVDIR64B, "movdir64b" },
+ { Cpu::tUINTR, "uintr" },
+ { Cpu::tSERIALIZE, "serialize" },
{ Cpu::tCLZERO, "clzero" },
{ Cpu::tAMX_FP16, "amx_fp16" },
{ Cpu::tAVX_VNNI_INT8, "avx_vnni_int8" },
@@ -127,7 +129,6 @@ void putCPUinfo(bool onlyCpuidFeature)
Core i7-3930K 6 2D
*/
cpu.putFamily();
- if (!cpu.has(Cpu::tINTEL)) return;
for (unsigned int i = 0; i < cpu.getDataCacheLevels(); i++) {
printf("cache level=%u data cache size=%u cores sharing data cache=%u\n", i, cpu.getDataCacheSize(i), cpu.getCoresSharingDataCache(i));
}