diff options
Diffstat (limited to 'sample/test_util.cpp')
-rw-r--r-- | sample/test_util.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index 60cf77a..7c930f0 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -84,6 +84,10 @@ void putCPUinfo() { Cpu::tAVX_VNNI, "avx_vnni" }, { Cpu::tAVX512_FP16, "avx512_fp16" }, { Cpu::tWAITPKG, "waitpkg" }, + { Cpu::tCLFLUSHOPT, "clflushopt" }, + { Cpu::tCLDEMOTE, "cldemote" }, + { Cpu::tMOVDIRI, "movdiri" }, + { Cpu::tMOVDIR64B, "movdir64b" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |