8000 fixup a comment · python/cpython@b4de356 · GitHub
[go: up one dir, main page]

Skip to content

Commit b4de356

Browse files
committed
fixup a comment
1 parent a800072 commit b4de356

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Include/internal/pycore_cpuinfo.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ typedef struct {
1717
uint8_t sse41: 1; // SSE4.1
1818
uint8_t sse42: 1; // SSE4.2
1919

20-
uint8_t avx: 1; // Also known as SIMD-128
21-
uint8_t avx2: 1; // Also known as SIMD-256
20+
/* Advanced Vector Extensions */
21+
uint8_t avx: 1;
22+
uint8_t avx2: 1;
2223
uint8_t avx512vbmi: 1; // AVX-512 Vector Byte Manipulation Instructions
2324

2425
uint8_t done; // indicate whether the structure was filled or not

0 commit comments

Comments
 (0)
0