File tree
30 files changed
+950
-385
lines changed- .github/workflows
- 3rdparty
- examples/pytorch/comm_gemm_overlap
- qa
- L0_jax_distributed_unittest
- L0_jax_unittest
- L0_pytorch_unittest
- L1_pytorch_distributed_unittest
- tests
- jax
- pytorch
- distributed
- fused_attn
- transformer_engine
- common
- fused_attn
- normalization
- jax
- cpp_extensions
- csrc/extensions
- pytorch
- tensor
30 files changed
+950
-385
lines changedLines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
42 | 42 |
| |
43 | 43 |
| |
44 | 44 |
| |
| 45 | + | |
45 | 46 |
| |
46 | 47 |
| |
47 | 48 |
| |
|
Submodule cudnn-frontend updated 43 files
- CMakeLists.txt+1-1
- docs/operations/Attention.md+10
- include/cudnn_backend_base.h+3-2
- include/cudnn_frontend.h+1
- include/cudnn_frontend/graph_helpers.h+24-2
- include/cudnn_frontend/graph_interface.h+28
- include/cudnn_frontend/graph_properties.h+32-1
- include/cudnn_frontend/node/paged_cache_load.h+6
- include/cudnn_frontend/node/resample.h+3
- include/cudnn_frontend/node/scaled_dot_product_flash_attention.h+372-481
- include/cudnn_frontend/node/sdpa_fp8.h+4-1
- include/cudnn_frontend/node/sdpa_fp8_bwd.h+5-1
- include/cudnn_frontend/plans.h+7-3
- include/cudnn_frontend/utils/attn_score_modifiers.h+387
- include/cudnn_frontend_EngineFallbackList.h+3-3
- include/cudnn_frontend_ExecutionPlan.h+3-3
- include/cudnn_frontend_Operation.h+3-4
- include/cudnn_frontend_OperationGraph.h+1-1
- include/cudnn_frontend_get_plan.h+3-4
- include/cudnn_frontend_shim.h+2
- include/cudnn_frontend_utils.h+1-1
- include/cudnn_frontend_version.h+1-1
- pyproject.toml+2-2
- python/cudnn/__init__.py+1-1
- python/pygraph/pygraph.cpp+16
- python/pygraph/pygraph.h+3
- python/pygraph/sdpa.cpp+2-2
- samples/cpp/CMakeLists.txt+3
- samples/cpp/convolution/conv_dynamic_shape_benchmark.cpp+205
- samples/cpp/convolution/fp8_fprop.cpp+2-1
- samples/cpp/convolution/fprop.cpp+4
- samples/cpp/convolution/wgrads.cpp+5-1
- samples/cpp/norm/layernorm.cpp+144
- samples/cpp/sdpa/fp16_bwd_with_flexible_graphs.cpp+207
- samples/cpp/sdpa/fp16_fwd_with_flexible_graphs.cpp+198
- samples/cpp/utils/helpers.h+1-1
- samples/legacy_samples/fp16_emu.cpp+5-3
- samples/legacy_samples/helpers.cpp+1-1
- samples/legacy_samples/test_list.cpp+5
- samples/python/50_scaled_dot_product_attention.ipynb+3-1
- samples/python/52_scaled_dot_product_attention_with_paged_caches.ipynb+5-3
- test/python/test_conv_bias.py+7
- test/python/test_mhas.py+112-60
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 |
| - | |
| 19 | + | |
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
| |||
70 | 70 |
| |
71 | 71 |
| |
72 | 72 |
| |
73 |
| - | |
| 73 | + | |
74 | 74 |
| |
75 | 75 |
| |
76 | 76 |
| |
|
Lines changed: 15 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + |
Lines changed: 1 addition & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
24 |
| - | |
| 23 | + |
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
16 |
| - | |
17 | 16 |
| |
18 | 17 |
| |
19 | 18 |
| |
| |||
22 | 21 |
| |
23 | 22 |
| |
24 | 23 |
| |
| 24 | + |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| 14 | + | |
14 | 15 |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
| 23 | + | |
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
|
Lines changed: 2 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
24 | 23 |
| |
25 | 24 |
| |
26 | 25 |
| |
| |||
32 | 31 |
| |
33 | 32 |
| |
34 | 33 |
| |
35 |
| - | |
36 | 34 |
| |
37 | 35 |
| |
38 | 36 |
| |
| |||
421 | 419 |
| |
422 | 420 |
| |
423 | 421 |
| |
424 |
| - | |
| 422 | + | |
425 | 423 |
| |
426 | 424 |
| |
427 | 425 |
| |
| |||
503 | 501 |
| |
504 | 502 |
| |
505 | 503 |
| |
506 |
| - | |
| 504 | + | |
507 | 505 |
| |
508 | 506 |
| |
509 | 507 |
| |
|
0 commit comments