diff --git a/contents/SUMMARY.md b/contents/SUMMARY.md index fcf102e5..b4ecdf2a 100644 --- a/contents/SUMMARY.md +++ b/contents/SUMMARY.md @@ -90,7 +90,7 @@ - [Unsafe Rust](advance/unsafe/intro.md) - [五种兵器](advance/unsafe/superpowers.md) - [Macro宏编程](advance/macro.md) - - [SIMD todo](advance/simd.md) + ## 专题内容,每个专题都配套一个小型项目进行实践 diff --git a/contents/advance/simd.md b/contents/advance/simd.md index 33f63634..82d54f8c 100644 --- a/contents/advance/simd.md +++ b/contents/advance/simd.md @@ -1,2 +1,5 @@ # SIMD -https://rustwiki.org/zh-CN/edition-guide/rust-2018/simd-for-faster-computing.html \ No newline at end of file + + +由于 Rust 最新也是万众瞩目的 `Portable SIMD` 还没有完全成熟,只能在 `nightly` 版本中使用,因此功能上可能还存在变数,鉴于此,本文不会深入介绍在 Rust 中如何编写 SIMD 代码,而是将目光聚集在两个点上:何为 `SIMD` 以及关于 `Portable SIMD` 的简单介绍。 +