Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This release has an [MSRV][] of 1.88.
- A "shift left by vector" operation, to go with the existing "shift right by vector". ([#155][] by [@valadaptive][])
- "Precise" float-to-integer conversions, which saturate out-of-bounds results and convert NaN to 0 across all platforms. ([#167][] by [@valadaptive][])
- The `Level::is_fallback` method, which lets you check if the current SIMD level is the scalar fallback. This works even if `Level::Fallback` is not compiled in, always returning false in that case. ([#168][] by [@valadaptive][])
- Added `store_array` methods to store SIMD vectors back to memory explicitly using intrinsics. ([#181][] by [@LaurenzV][])

### Fixed

Expand Down Expand Up @@ -127,6 +128,7 @@ No changelog was kept for this release.
[@Ralith]: https://github.com/Ralith
[@DJMcNab]: https://github.com/DJMcNab
[@valadaptive]: https://github.com/valadaptive
[@LaurenzV]: https://github.com/LaurenzV
[@Shnatsel]: https://github.com/Shnatsel

[#75]: https://github.com/linebender/fearless_simd/pull/75
Expand Down
180 changes: 180 additions & 0 deletions fearless_simd/src/generated/avx2.rs

Large diffs are not rendered by default.

Loading