-
Notifications
You must be signed in to change notification settings - Fork 35
Release 2.15 #656
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
Open
VeeraRajasekhar
wants to merge
24
commits into
release_v2.15_rocm
Choose a base branch
from
release-sync-v2.15-260630
base: release_v2.15_rocm
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+10,293
−2,141
Open
Release 2.15 #656
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0ebe377
Changed version to 2.15.0
ptrendx f9de736
[PyTorch] Fix cuteDSL kernel incorrect numerics when K is 64 aligned …
ksivaman 8e73f54
Add MXFP8 attention (#2719)
cyanguwa 95edbd4
Fix flash attention version check. (#2910)
bbuschkaemper a506ec5
Make NS coefficients parameter 2D in Python API (#2904)
vcherepanov-nv 45fb909
[PyTorch] Fix CP A2A F16 when NVTE_FP8_DPA_BWD=1 (#2917)
cyanguwa 4b74684
[PyTorch] Fix FA4 selection when FA3 is unavailable. (#2909)
bbuschkaemper 150525e
Fix the race in the dbias computation in MXFP8 quantization and group…
ptrendx c9ab18a
Remove uncessary ctype being passed to GroupedGEMMQuant kernel (#2922)
vthumbe1503 9250b77
[Common] Fix "0" literal for compilation (#2934)
cyanguwa 94958be
[Common, PyTorch] Add triton mHC kernels & pytorch APIs (#2790)
kainzhong 6075536
[PyTorch] Main_Grad buffer isnt overwritten when overwrite_main_grad=…
vthumbe1503 1460477
Correctly pad scaling factor inverses to satisfy cuteDSL requirements…
ksivaman a429716
[PyTorch] Fusible ops preserve usages in quantized weight tensors (#2…
timmoon10 df68421
[PyTorch] Add workaround for cuteDSL stride requirement for zero-toke…
ksivaman e688ae4
[JAX] Calculate seqlens and offsets in O(T) space instead of O(T*T) s…
KshitijLakhani 10bdccc
[PyTorch] Cleanup `cudnn-frontend` requirements for fused grouped MLP…
ksivaman 3378ef1
[JAX] Fix bf16 precision loss in TestGroupedDense reference dbias (#2…
tdophung 42b8400
[PyTorch] Guard/document single parameter feature for grouped linear …
ksivaman 2f9490a
auto-merge basis for release-sync-v2.15-260630 (raw, conflicts present)
VeeraRajasekhar 8d83ffb
Resolve release-sync v2.15 conflicts + port ROCm fused-attn API
VeeraRajasekhar b20f014
ROCm build fixes for flash_attn TMA and swizzle dynamic smem
VeeraRajasekhar 0853796
Guard new upstream FP8/MXFP8 fused-attn arch heuristics for ROCm
VeeraRajasekhar d6637f7
Added Copyright
VeeraRajasekhar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Submodule cudnn-frontend
updated
278 files
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 2.15.0.dev0 | ||
| 2.15.0 |
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
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
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
Empty file.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,6 +34,7 @@ add_executable(test_operator | |
| test_multi_unpadding.cu | ||
| test_causal_softmax.cu | ||
| test_swizzle.cu | ||
| test_multi_swizzle.cu | ||
| test_swap_first_dims.cu | ||
| test_grouped_gemm.cu #CUDA-only test | ||
| ../test_common.cu) | ||
|
|
@@ -44,6 +45,8 @@ if(USE_ROCM) | |
| list(REMOVE_ITEM test_cuda_sources | ||
| test_cast_float8blockwise.cu | ||
| test_grouped_gemm.cu) | ||
| # Skip on ROCm for now; TODO: revisit on gfx1250 and re-enable these tests. | ||
| list(REMOVE_ITEM test_cuda_sources test_multi_swizzle.cu) | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's this test for? Why revisit on gfx1250? |
||
| list(APPEND test_cuda_sources | ||
| test_dequantize_nvfp4.cu | ||
| test_cublaslt_gemm.cu | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why add
NVTE_GROUPED_LINEAR_SINGLE_PARAM=1?