diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-12-19 17:24:11 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-12-19 17:24:11 +0900 |
commit | 68a30b91fa64f94928064a4f6f8861c0c848bede (patch) | |
tree | effd6ec4e55bf93ab65fc1b8212ee3c6eef0cd3c /sample | |
parent | e2d36c662ce53e5cf5e482863c8133633ad2e585 (diff) | |
download | xbyak-68a30b91fa64f94928064a4f6f8861c0c848bede.tar.gz xbyak-68a30b91fa64f94928064a4f6f8861c0c848bede.zip |
add detection of AESKLE, WIDE_KL
Diffstat (limited to 'sample')
-rw-r--r-- | sample/test_util.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index 66869ee..f88c265 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -105,6 +105,8 @@ void putCPUinfo(bool onlyCpuidFeature) { Cpu::tAVX_VNNI_INT16, "avx_vnni_int16" }, { Cpu::tAPX_F, "apx_f" }, { Cpu::tAVX10, "avx10" }, + { Cpu::tAESKLE, "aeskle" }, + { Cpu::tWIDE_KL, "wide_kl" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |