diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-05-11 14:04:22 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-05-11 14:04:22 +0900 |
commit | 38c40c02e623638489775763f2af4ee6a5d50fe5 (patch) | |
tree | 845ad02cec49fe81e731fcd3c5fcc33a84732f71 /sample/test_util.cpp | |
parent | c061ac83903a971c4cbc1dbd944753f018ad1996 (diff) | |
download | xbyak-38c40c02e623638489775763f2af4ee6a5d50fe5.tar.gz xbyak-38c40c02e623638489775763f2af4ee6a5d50fe5.zip |
detection of clflushopt
Diffstat (limited to 'sample/test_util.cpp')
-rw-r--r-- | sample/test_util.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index 60cf77a..39ed906 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -84,6 +84,7 @@ void putCPUinfo() { Cpu::tAVX_VNNI, "avx_vnni" }, { Cpu::tAVX512_FP16, "avx512_fp16" }, { Cpu::tWAITPKG, "waitpkg" }, + { Cpu::tCLFLUSHOPT, "clflushopt" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |