Skip to content

Commit

Permalink
update docs to mention std::simd and #![feature(portable_simd)]
Browse files Browse the repository at this point in the history
This replaces the simd docs that used to reference packed_simd.
  • Loading branch information
ytmimi committed Apr 16, 2024
1 parent c36db9f commit 32a098d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 32a098d

Please sign in to comment.