add Cpu::tAVX512_FP16

This commit is contained in:
MITSUNARI Shigeo 2021-08-30 14:16:08 +09:00
parent 1554f479cb
commit acd360c38f
2 changed files with 4 additions and 1 deletions

View file

@ -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);