diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-08-07 10:11:54 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-08-07 10:11:54 +0900 |
commit | bea25541ac7494779670d0820fe48468cdf7e554 (patch) | |
tree | c65fd82f9d3a4a9aeb86c069dbc6388f6677ac27 /sample/test_util.cpp | |
parent | d9e76b1c6d7545eb4596ef20065b2f46bdb0eeef (diff) | |
download | xbyak-bea25541ac7494779670d0820fe48468cdf7e554.tar.gz xbyak-bea25541ac7494779670d0820fe48468cdf7e554.zip |
add detection of AVX_VNNI_INT16
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 7115b38..35c2fa8 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -102,6 +102,7 @@ void putCPUinfo(bool onlyCpuidFeature) { Cpu::tSHA512, "sha512" }, { Cpu::tSM3, "sm3" }, { Cpu::tSM4, "sm4" }, + { Cpu::tAVX_VNNI_INT16, "avx_vnni_int16" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |