diff options
author | MITSUNARI Shigeo <[email protected]> | 2020-10-19 18:39:10 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2020-10-19 18:39:10 +0900 |
commit | 91784e2b855b873834144364125f0e0a82265ee5 (patch) | |
tree | 49c3afb199d96c379149e6310deec690ebf64721 /sample/test_util.cpp | |
parent | 70b70c557ffa8c213c0f6c3d1778ac2ee6cc5d47 (diff) | |
download | xbyak-91784e2b855b873834144364125f0e0a82265ee5.tar.gz xbyak-91784e2b855b873834144364125f0e0a82265ee5.zip |
test_util checks AMX and AVX_VNNI
Diffstat (limited to 'sample/test_util.cpp')
-rw-r--r-- | sample/test_util.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index afb6e5a..98176fc 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -80,6 +80,10 @@ void putCPUinfo() { Cpu::tAVX512_VPOPCNTDQ, "avx512_vpopcntdq" }, { Cpu::tAVX512_BF16, "avx512_bf16" }, { Cpu::tAVX512_VP2INTERSECT, "avx512_vp2intersect" }, + { Cpu::tAMX_TILE, "amx(tile)" }, + { Cpu::tAMX_INT8, "amx(int8)" }, + { Cpu::tAMX_BF16, "amx(bf16)" }, + { Cpu::tAVX_VNNI, "avx_vnni" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |