Browse Source

init-array-benchmark: fix a typo misusing 'byte' instead of 'bit'

Xi Ruoyao 3 years ago
parent
commit
7371245b20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      content/post/init-array-benchmark.md

+ 1 - 1
content/post/init-array-benchmark.md

@@ -145,7 +145,7 @@ int main()
 
 如果在 `-O3` 的基础上加入 `-march=native`,
 编译器还会动用本机上更大的向量寄存器。例如,在我的测试平台上,
-CPU 支持 AVX-512,编译器会使用 512 字节的 `%zmm0` 寄存器。
+CPU 支持 AVX-512,编译器会使用 512 的 `%zmm0` 寄存器。
 但是这并不能进一步缩短运行时间 (测试结果仍为 $0.18$ 秒)。
 
 编译器的循环展开和向量化也会作用于 `std::fill`。