aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample/test_util.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-10-06 09:35:51 +0900
committerMITSUNARI Shigeo <[email protected]>2022-10-07 09:30:06 +0900
commit95752ebd798ac1c6ae981066ae93eae00c6834a1 (patch)
tree66e26305697c1269aaaf2be646a4688a46c9a547 /sample/test_util.cpp
parentcd36e31ea6f17742ce5030330c100675e4178d25 (diff)
downloadxbyak-95752ebd798ac1c6ae981066ae93eae00c6834a1.tar.gz
xbyak-95752ebd798ac1c6ae981066ae93eae00c6834a1.zip
add tAVX_IFMA
Diffstat (limited to 'sample/test_util.cpp')
-rw-r--r--sample/test_util.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp
index ef53723..a20d2df 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -92,6 +92,7 @@ void putCPUinfo(bool onlyCpuidFeature)
{ Cpu::tAMX_FP16, "amx_fp16" },
{ Cpu::tAVX_VNNI_INT8, "avx_vnni_int8" },
{ Cpu::tAVX_NE_CONVERT, "avx_ne_convert" },
+ { Cpu::tAVX_IFMA, "avx_ifma" },
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str);