-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Autogenerate entire prime butterfly files, rather than just chunks (#137
) * Created a rust tool to autogenerate the full SSE prime butterfly file * Removed unnecessary include * added prime-specific benches * formatting fix * Make template architecture-agnostic * Added wasm simd prime butterfly benches * wasm simd refactor: rename the non-newtype util methods to _v128 * Hook up wasm simd to use the prime butterfly generator * add neon prime butterfly benchmarks * Check in cargo.lock for gen_simd_butterflies * Converted neon prime butterflies over to the autogenerated system and FMA * Use the same testing feature detection as neon * Delete gen_sse_butterflies.py * Exclude wasm simd benchmarks from rustfmt * Simplify the template by pre-packaging the struct names * Simplified butterfly macro invocation by removing unused parameters * Fix macro parameter * Fix struct name * Use handlebars templates to avoid preprocessing * Added "--check" mode to the simd butterfly script * Added a CI step to verify autogenerated code match * Test new CI step by submitting mismatching code * Back out test code, remove handlebars import
- Loading branch information
Showing
28 changed files
with
14,102 additions
and
19,175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/target | ||
/Cargo.lock | ||
Tools/gen_simd_butterflies/target | ||
*.swp | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.