diff options
author | MITSUNARI Shigeo <[email protected]> | 2016-11-26 21:02:55 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2016-11-26 21:03:05 +0900 |
commit | 3067b745087036571c47f1ead5ea12fa11fc0765 (patch) | |
tree | 810856b8feea5eb777e6433ddb2a96eeb9ab06aa /sample/test_util.cpp | |
parent | 4c3adeb9e7a2d03a7563a9e7f2913cf026642e63 (diff) | |
download | xbyak-3067b745087036571c47f1ead5ea12fa11fc0765.tar.gz xbyak-3067b745087036571c47f1ead5ea12fa11fc0765.zip |
add detection of AVX512_4VNNIW and AVX512_4FMAPS
Diffstat (limited to 'sample/test_util.cpp')
-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 7d5af42..dd19b52 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -64,6 +64,8 @@ void putCPUinfo() { Cpu::tAVX512BW, "avx512bw" }, { Cpu::tAVX512VL, "avx512vl" }, { Cpu::tAVX512VBMI, "avx512vbmi" }, + { Cpu::tAVX512_4VNNI, "avx512_4vnni" }, + { Cpu::tAVX512_4FMAPS, "avx512_4fmaps" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |