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

Add AVX_VNNI

This commit is contained in:
Mykola Hohsdze
2022-08-04 22:01:47 +03:00
committed by Mizux
parent cbc8f9c7a3
commit c6b0a803a8
3 changed files with 22 additions and 0 deletions

View File

@ -60,6 +60,7 @@ typedef struct {
int sse4a : 1;
int avx : 1;
int avx_vnni : 1;
int avx2 : 1;
int avx512f : 1;
@ -215,6 +216,7 @@ typedef enum {
X86_SSE4_2,
X86_SSE4A,
X86_AVX,
X86_AVX_VNNI,
X86_AVX2,
X86_AVX512F,
X86_AVX512CD,