Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/cpu_features.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2022-07-12 18:45:51 +0300
committerGuillaume Chatelet <gchatelet@google.com>2022-07-12 18:45:51 +0300
commitdb9ad9fc2ccfbbb1815c1459b2151d57b773ddd3 (patch)
treedd30ee3ff926b6337cb64faca9efeb552d66b64c
parent8360923923dc8c81d7444e16a89583c7a87750a1 (diff)
Add not about avx512_4vbmi2 being an alias of avx512_4fmaps
-rw-r--r--include/cpuinfo_x86.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cpuinfo_x86.h b/include/cpuinfo_x86.h
index 46a9b73..66b06ba 100644
--- a/include/cpuinfo_x86.h
+++ b/include/cpuinfo_x86.h
@@ -76,7 +76,7 @@ typedef struct {
int avx512bitalg : 1;
int avx512vpopcntdq : 1;
int avx512_4vnniw : 1;
- int avx512_4vbmi2 : 1;
+ int avx512_4vbmi2 : 1; // Note: this is an alias to avx512_4fmaps.
int avx512_second_fma : 1;
int avx512_4fmaps : 1;
int avx512_bf16 : 1;
@@ -227,7 +227,7 @@ typedef enum {
X86_AVX512BITALG,
X86_AVX512VPOPCNTDQ,
X86_AVX512_4VNNIW,
- X86_AVX512_4VBMI2,
+ X86_AVX512_4VBMI2, // Note: this is an alias to X86_AVX512_4FMAPS.
X86_AVX512_SECOND_FMA,
X86_AVX512_4FMAPS,
X86_AVX512_BF16,