-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vectorize bitset
from string construction
#4839
Merged
Merged
Conversation
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 reverts commit 70374d9.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
AlexGuteniev
commented
Sep 13, 2024
StephanTLavavej
approved these changes
Oct 7, 2024
Final results on my 5950X:
This is great and a single 0.91 scenario is nothing to worry about. 😻 |
This is one of the four 15 cases which are just below vectorization threshold. Just one of them has exactly 1.00 as expected |
I'm mirroring this to the MSVC-internal repo - please notify me if any further changes are pushed. |
Thanks 😹 0️⃣ 1️⃣ |
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.
📜 The approach
We need to:
wchar_t
to bit maskIt is implemented as follows:
wchar_t
mask. We xor the input with '0' vector, and check if anything not masked in the resulting byte mask is zero. This way we both validate, and have the mask.wchar_t
mask, as we only need to validate,wchar_t
mask to byte mask we use(v)pshufb
(..._shuffle_epi8
). The AVX2 version is not cross-lane, and additional cross-lane instruction is somewhat expensive, so we fix up that with bits, rather than now.(v)pmovmskb
is the instruction that does byte mask to bit mask conversion, it is emitted by..._movemask_epi8
intrinsic.To avoid unnecessary complication, and have a bit better performance, an assumption was made that bitset has at least a multiple of 2 padding on SSE4.2 code path, and at lest a multiple of 4 padding on AVX2 code path.
For large bitset we have units of
uint64_t
, and it is not reasonable to have unit less than native integer size, and AVX2 code path has the threshold of 256, since it is not efficient on smaller sizes.For small bitset we have units of
uint32_t
, but there's a vNext comment to consider smaller units. But we have a threshold on the whole vectorization as 16 bits, so 8 or less bits bitset that could potentially be less that 2 bytes, would not vectorize.⚖️ Threshold selection
According to my benchmarks, the vectorized approach benefits for 16 bits, but doesn't for 8 bits. I tried 12, and it seems in favor of non-vectorization. Let it be round up to 16 then.
📏 String length
There are overloads with implicit and explicit length.
For implicit length the non-vectorized implementation calls
strlen
/wcslen
(via character traits).Hypothetically, vectorized implementation could determine length during conversion. We don't do that here, because:
Unfortunately, this causes implicit length overload to benefit much less from vectorization.
⏱️ Benchmark results