Conversation
|
|
Contributor
Author
|
FYI, I stumbled upon this while working on xtensor-stack/xsimd#1417. |
…idth When a packed value starts on a byte boundary its high part contributes nothing, but LargeKernelPlan::Build still asks for a left shift, and on 8 bit lanes that shift is the whole lane width. Some backends saturate and give zero, others use the low bits of the shift amount and return the lane unchanged, so its bits survive the mask. Point the high swizzle back at the low byte instead and set the shift to zero. The emitted kernel is unchanged and arrow-bpacking-benchmark shows no difference.
domibel
force-pushed
the
bpacking-portable-lshift
branch
from
September 25, 2026 04:22
4a0f393 to
40cd578
Compare
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.
Rationale for this change
When a packed value starts on a byte boundary its high part contributes nothing, but LargeKernelPlan::Build still asks for a left shift, and on 8 bit lanes that shift is the whole lane width. Some backends saturate and give zero, others use the low bits of the shift amount and return the lane unchanged, so its bits survive the mask.
So affected values decode incorrectly with no error reported, that can lead to silent data corruption.
What changes are included in this PR?
Point the high swizzle back at the low byte instead and set the shift to zero. So the plan never asks for the shift at all.
This is a compile-time change to the kernel plan. The emitted kernel is unchanged.
Are these changes tested?
Yes
I also added a new assert that fails to compile on main.
Are there any user-facing changes?
No
Was AI used for this PR?
PR code and description written by:
Reviewed before submission by: