diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-08-30 14:16:08 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-08-30 14:16:08 +0900 |
commit | acd360c38fbe1612c7e2ecb3a88bd3440b27cf26 (patch) | |
tree | 1031c505eca2b7406a64af12a45e0bcd28bb827c /sample/test_util.cpp | |
parent | 1554f479cb37e01458bdc2c316953ae15b3bd5f9 (diff) | |
download | xbyak-acd360c38fbe1612c7e2ecb3a88bd3440b27cf26.tar.gz xbyak-acd360c38fbe1612c7e2ecb3a88bd3440b27cf26.zip |
add Cpu::tAVX512_FP16
Diffstat (limited to 'sample/test_util.cpp')
-rw-r--r-- | sample/test_util.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index cd23984..79a2d32 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -83,6 +83,7 @@ void putCPUinfo() { Cpu::tAMX_INT8, "amx(int8)" }, { Cpu::tAMX_BF16, "amx(bf16)" }, { Cpu::tAVX_VNNI, "avx_vnni" }, + { Cpu::tAVX512_FP16, "avx512_fp16" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |