Skip to content

Commit 32a098d

Browse files
committed
update docs to mention std::simd and #![feature(portable_simd)]
This replaces the simd docs that used to reference packed_simd.
1 parent c36db9f commit 32a098d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Your users can then compile with runtime dispatch using:
4646
cargo build --release --features runtime-dispatch-simd
4747
```
4848

49-
The second, `generic-simd`, uses `packed_simd` to provide a fast
49+
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
5050
architecture-agnostic SIMD codepath, but requires running on nightly.
5151

5252
Your users can compile with this codepath using:

0 commit comments

Comments
 (0)