We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a800072 commit b4de356Copy full SHA for b4de356
Include/internal/pycore_cpuinfo.h
@@ -17,8 +17,9 @@ typedef struct {
17
uint8_t sse41: 1; // SSE4.1
18
uint8_t sse42: 1; // SSE4.2
19
20
- uint8_t avx: 1; // Also known as SIMD-128
21
- uint8_t avx2: 1; // Also known as SIMD-256
+ /* Advanced Vector Extensions */
+ uint8_t avx: 1;
22
+ uint8_t avx2: 1;
23
uint8_t avx512vbmi: 1; // AVX-512 Vector Byte Manipulation Instructions
24
25
uint8_t done; // indicate whether the structure was filled or not
0 commit comments