File tree Expand file tree Collapse file tree 3 files changed +188
-184
lines changed
Expand file tree Collapse file tree 3 files changed +188
-184
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,7 @@ Exit Code 1
310310| AVXSLOW | Indicates the CPU performs 2 128 bit operations instead of one |
311311| AVXVNNI | AVX (VEX encoded) VNNI neural network instructions |
312312| AVXVNNIINT8 | AVX-VNNI-INT8 instructions |
313+ | AVXVNNIINT16 | AVX-VNNI-INT16 instructions |
313314| BHI_CTRL | Branch History Injection and Intra-mode Branch Target Injection / CVE-2022 -0001, CVE-2022 -0002 / INTEL-SA-00598 |
314315| BMI1 | Bit Manipulation Instruction Set 1 |
315316| BMI2 | Bit Manipulation Instruction Set 2 |
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ const (
104104 AVXSLOW // Indicates the CPU performs 2 128 bit operations instead of one
105105 AVXVNNI // AVX (VEX encoded) VNNI neural network instructions
106106 AVXVNNIINT8 // AVX-VNNI-INT8 instructions
107+ AVXVNNIINT16 // AVX-VNNI-INT16 instructions
107108 BHI_CTRL // Branch History Injection and Intra-mode Branch Target Injection / CVE-2022-0001, CVE-2022-0002 / INTEL-SA-00598
108109 BMI1 // Bit Manipulation Instruction Set 1
109110 BMI2 // Bit Manipulation Instruction Set 2
@@ -1242,6 +1243,7 @@ func support() flagSet {
12421243 // CPUID.(EAX=7, ECX=1).EDX
12431244 fs .setIf (edx1 & (1 << 4 ) != 0 , AVXVNNIINT8 )
12441245 fs .setIf (edx1 & (1 << 5 ) != 0 , AVXNECONVERT )
1246+ fs .setIf (edx1 & (1 << 10 ) != 0 , AVXVNNIINT16 )
12451247 fs .setIf (edx1 & (1 << 14 ) != 0 , PREFETCHI )
12461248 fs .setIf (edx1 & (1 << 19 ) != 0 , AVX10 )
12471249 fs .setIf (edx1 & (1 << 21 ) != 0 , APX_F )
You can’t perform that action at this time.
0 commit comments