mirror of
https://github.com/herumi/xbyak
synced 2024-11-21 16:09:11 -07:00
test_util checks AMX and AVX_VNNI
This commit is contained in:
parent
70b70c557f
commit
91784e2b85
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue