1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-01 13:21:13 +02:00

add x86/avx512_fp16 detection (#279)

fixes #278
This commit is contained in:
damageboy
2022-10-20 12:26:13 +03:00
committed by GitHub
parent 627959faee
commit 8ca7c65f65
3 changed files with 71 additions and 0 deletions

View File

@ -82,6 +82,7 @@ typedef struct {
int avx512_4fmaps : 1;
int avx512_bf16 : 1;
int avx512_vp2intersect : 1;
int avx512_fp16 : 1;
int amx_bf16 : 1;
int amx_tile : 1;
int amx_int8 : 1;
@ -239,6 +240,7 @@ typedef enum {
X86_AVX512_4FMAPS,
X86_AVX512_BF16,
X86_AVX512_VP2INTERSECT,
X86_AVX512_FP16,
X86_AMX_BF16,
X86_AMX_TILE,
X86_AMX_INT8,