aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-10-07 09:28:49 +0900
committerMITSUNARI Shigeo <[email protected]>2022-10-07 09:28:49 +0900
commitcd36e31ea6f17742ce5030330c100675e4178d25 (patch)
treeb9904663e5fbdd6986f514cc972002a5939d3c2b
parente5858af2767d5a9483548fd240e6842bda870c5a (diff)
downloadxbyak-cd36e31ea6f17742ce5030330c100675e4178d25.tar.gz
xbyak-cd36e31ea6f17742ce5030330c100675e4178d25.zip
[sample] show AMX_FP16/AVX_VNNI_INT8/AVX_NE_CONVERT
-rw-r--r--sample/test_util.cpp3
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);