feat: add permute_i8_m256i / permute_i8_m512i (vpermb) wrappers#126
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds safe wrappers for the
vpermbbyte-lane variable-permute intrinsics:permute_i8_m256i(idx, a)→_mm256_permutexvar_epi8(gatedavx512vbmi+avx512vl)permute_i8_m512i(idx, a)→_mm512_permutexvar_epi8(gatedavx512vbmi)Naming and the
(idx, a)argument order follow the neighbouringpermute_i32_m512i/permute_i64_m512iwrappers. Each has a doctest, and+avx512vbmiis added to the AVX-512 CIRUSTFLAGS/RUSTDOCFLAGSso they run under Intel SDE (Sapphire Rapids implements VBMI). Verified passing on native VBMI hardware.Motivation: lets downstream crates (e.g.
wide) lower a full-width byte shuffle to a singlevpermbwithout a raw intrinsic.