diff options
author | MITSUNARI Shigeo <[email protected]> | 2019-05-24 15:08:19 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2019-05-26 17:34:58 +0900 |
commit | 4cfd520878a1d14acde5441629fe3f705d5470ca (patch) | |
tree | 4cc65c40ecebe6cac7844cc945c4fd317e8c8bf6 /sample/test_util.cpp | |
parent | 4033564c6f006f3fb520dff1d35e32d4144e6d7a (diff) | |
download | xbyak-4cfd520878a1d14acde5441629fe3f705d5470ca.tar.gz xbyak-4cfd520878a1d14acde5441629fe3f705d5470ca.zip |
add avx512_bf16v5.80
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 d75a5e0..afb6e5a 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -78,6 +78,8 @@ void putCPUinfo() { Cpu::tAVX512_VNNI, "avx512_vnni" }, { Cpu::tAVX512_BITALG, "avx512_bitalg" }, { Cpu::tAVX512_VPOPCNTDQ, "avx512_vpopcntdq" }, + { Cpu::tAVX512_BF16, "avx512_bf16" }, + { Cpu::tAVX512_VP2INTERSECT, "avx512_vp2intersect" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |