diff options
| author | Barinzaya <barinzaya@gmail.com> | 2024-10-14 08:53:16 -0400 |
|---|---|---|
| committer | Barinzaya <barinzaya@gmail.com> | 2024-10-14 08:53:16 -0400 |
| commit | c93923c9f7609529304dcebab5005ea172cac4ae (patch) | |
| tree | bd8127eac86bf2731e03029dd9c9315c8127a0bb /core/sys/info | |
| parent | 0e4ed515b966b79764d5d919a9425b59bfff8850 (diff) | |
Fixed formatting.
Diffstat (limited to 'core/sys/info')
| -rw-r--r-- | core/sys/info/cpu_intel.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/sys/info/cpu_intel.odin b/core/sys/info/cpu_intel.odin index f42369e81..d8ef21473 100644 --- a/core/sys/info/cpu_intel.odin +++ b/core/sys/info/cpu_intel.odin @@ -136,10 +136,10 @@ init_cpu_features :: proc "c" () { try_set(&set, .avx512_bitalg, 12, ecx7) try_set(&set, .avx512_vpopcntdq, 14, ecx7) - try_set(&set, .avx512_4vnniw, 2, edx7) - try_set(&set, .avx512_4fmaps, 3, edx7) - try_set(&set, .avx512_vp2intersect, 8, edx7) - try_set(&set, .avx512_fp16, 23, edx7) + try_set(&set, .avx512_4vnniw, 2, edx7) + try_set(&set, .avx512_4fmaps, 3, edx7) + try_set(&set, .avx512_vp2intersect, 8, edx7) + try_set(&set, .avx512_fp16, 23, edx7) eax7_1, _, _, _ := cpuid(7, 1) try_set(&set, .avx512_bf16, 5, eax7_1) |