diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-05-11 17:11:50 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-05-11 17:11:50 +0900 |
commit | 84ab46bb3b9360ce9a71e6eb50ee8aabb31dfa57 (patch) | |
tree | e20eed6420dc5b23c17958b0ab8bce54a2698012 /sample/test_util.cpp | |
parent | a84ddc12dd9d25633cddda2f2b7f8e5d96031aff (diff) | |
download | xbyak-84ab46bb3b9360ce9a71e6eb50ee8aabb31dfa57.tar.gz xbyak-84ab46bb3b9360ce9a71e6eb50ee8aabb31dfa57.zip |
add cldemote to Cpu
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 39ed906..27b1cf0 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -85,6 +85,7 @@ void putCPUinfo() { Cpu::tAVX512_FP16, "avx512_fp16" }, { Cpu::tWAITPKG, "waitpkg" }, { Cpu::tCLFLUSHOPT, "clflushopt" }, + { Cpu::tCLDEMOTE, "cldemote" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |