Optimize Triton TBE forward for small long-bag tables (#4486) - #4486
Closed
stashuk-olek wants to merge 3 commits into
Closed
Optimize Triton TBE forward for small long-bag tables (#4486)#4486stashuk-olek wants to merge 3 commits into
stashuk-olek wants to merge 3 commits into
Conversation
Contributor
|
@stashuk-olek has exported this pull request. If you are a Meta employee, you can view the originating Diff in D114273027. |
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 5, 2026 17:59
a56a01f to
bef25e5
Compare
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 5, 2026 21:01
bef25e5 to
359ca72
Compare
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 6, 2026 16:18
359ca72 to
5d573cb
Compare
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 6, 2026 16:25
5d573cb to
6d498b6
Compare
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 6, 2026 20:13
e382df2 to
b8fae9c
Compare
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 6, 2026 23:05
b8fae9c to
9d0f9d5
Compare
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 7, 2026 17:41
9d0f9d5 to
2e374ca
Compare
Summary: Use BoundsCheckMode.V2 for Triton TBE standalone index validation. This preserves the existing warning and offset-repair behavior while reducing validation overhead before Triton forward. Reviewed By: axeisghost, TroyGarden Differential Revision: D114279989
Summary: Validate and repair indices inside supported unweighted, non-VBE Triton forward kernels. Unsupported configurations retain the CUDA v2 fallback, while fused checked loads preserve warning accumulation without a separate full-index pass. Reviewed By: TroyGarden, axeisghost Differential Revision: D114284802
stashuk-olek
force-pushed
the
export-D114273027
branch
from
August 8, 2026 06:14
2e374ca to
1c31046
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.
Summary:
Convert long bags over small tables into per-bag row histograms followed by a tensor-core dot. Generic row, dimension, and bag-size predicates select the route, and checked loads preserve fused bounds behavior.
Reviewed By: axeisghost
Differential Revision: D114273027