From 32a098dfd2f058bcf4f42ec354bb71b18c76da0d Mon Sep 17 00:00:00 2001 From: Yacin Tmimi Date: Mon, 15 Apr 2024 21:33:11 -0400 Subject: [PATCH] update docs to mention `std::simd` and `#![feature(portable_simd)]` This replaces the simd docs that used to reference packed_simd. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee028de..12301e9 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Your users can then compile with runtime dispatch using: cargo build --release --features runtime-dispatch-simd ``` -The second, `generic-simd`, uses `packed_simd` to provide a fast +The second, `generic-simd`, uses [`std::simd`](https://doc.rust-lang.org/std/simd/index.html) and [`#![feature(portable_simd)]`](https://github.com/rust-lang/rust/issues/86656) to provide a fast architecture-agnostic SIMD codepath, but requires running on nightly. Your users can compile with this codepath using: