diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-10-07 09:28:49 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-10-07 09:28:49 +0900 |
commit | cd36e31ea6f17742ce5030330c100675e4178d25 (patch) | |
tree | b9904663e5fbdd6986f514cc972002a5939d3c2b | |
parent | e5858af2767d5a9483548fd240e6842bda870c5a (diff) | |
download | xbyak-cd36e31ea6f17742ce5030330c100675e4178d25.tar.gz xbyak-cd36e31ea6f17742ce5030330c100675e4178d25.zip |
[sample] show AMX_FP16/AVX_VNNI_INT8/AVX_NE_CONVERT
-rw-r--r-- | sample/test_util.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index 2488ce1..ef53723 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -89,6 +89,9 @@ void putCPUinfo(bool onlyCpuidFeature) { Cpu::tMOVDIRI, "movdiri" }, { Cpu::tMOVDIR64B, "movdir64b" }, { Cpu::tCLZERO, "clzero" }, + { Cpu::tAMX_FP16, "amx_fp16" }, + { Cpu::tAVX_VNNI_INT8, "avx_vnni_int8" }, + { Cpu::tAVX_NE_CONVERT, "avx_ne_convert" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |