Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8aea955
[TRTLLM-15917][feat] Integrate Sol-Attn sparse attention into VisualGen
karljang Aug 28, 2026
72da554
[TRTLLM-15917][fix] Keep the Sol-Attn CuTe DSL launch opaque to Dynamo
karljang Sep 1, 2026
78d9165
[TRTLLM-15917][doc] Declare sol_attn_backend.py's upstream derivation
karljang Sep 1, 2026
5d60536
[TRTLLM-15917][feat] Drop sm120 from the Sol-Attn port
karljang Sep 2, 2026
9131bda
[TRTLLM-15917][fix] Keep Sol-Attn's non-sparse attention on the confi…
karljang Sep 2, 2026
50d1b2b
[TRTLLM-15917][fix] Restrict the in-family fallback to true cross-att…
karljang Sep 3, 2026
2884fa4
[TRTLLM-15917][chore] Rename SolAttnAttention to SolAttention
karljang Sep 3, 2026
92130f5
[TRTLLM-15917][refactor] Decide Sol-Attn eligibility per call, not pe…
karljang Sep 3, 2026
1e43ec1
[TRTLLM-15917][fix] Address review findings on the Sol-Attn integration
karljang Sep 3, 2026
ca097a7
[TRTLLM-15917][feat] Support SM103 (B300/GB300) for Sol-Attn
karljang Sep 8, 2026
b8d4e85
[TRTLLM-15917][fix] Address review feedback on Sol-Attn
karljang Sep 9, 2026
9dcfb5d
[TRTLLM-15917][fix] Reuse SkipSoftmaxScheduler for the Sol-Attn graph…
karljang Sep 9, 2026
3860922
[TRTLLM-15917][test] Make ineligibility-reason cases reach the branch…
karljang Sep 10, 2026
67941e0
[TRTLLM-15917][fix] Honor masks, survive CUDA-graph capture, wire LTX…
karljang Sep 11, 2026
6dd755d
[TRTLLM-15917][chore] Drop an unused variable left in the multi-block…
karljang Sep 11, 2026
6d3bbc0
[TRTLLM-15917][test] Teach the LTX-2 two-stage test stubs the CUDA-gr…
karljang Sep 11, 2026
1ee2eca
[TRTLLM-15917][fix] Keep the CUDA-graph phase scope in LTX-2's captur…
karljang Sep 14, 2026
ef1caf5
[TRTLLM-15917][chore] Drop the no-op kv_splits option from SolAttenti…
karljang Sep 14, 2026
3d8f9d9
[TRTLLM-15917][chore] Vendor the Sol-Attn kernel through vendor_sources
karljang Sep 16, 2026
e014d54
[TRTLLM-15917][fix] Address review: typed dense_layers, TRTLLM_ stric…
karljang Sep 16, 2026
d59438f
[TRTLLM-15917][chore] Clarify dense-backend initialization rationale
karljang Sep 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1525,7 +1525,7 @@ legacy-files: &legacy_files |
# list; the hook's own `files:` pattern only gates *when* the hook triggers.

# Global exclude: vendored code + trtllm-gen FMHA artifacts (cubin pointers, export headers, cuda_ptx)
exclude: '(^cpp/tensorrt_llm/common/sha256/|^triton_kernels/|^tensorrt_llm/_torch/attention/backends/prims_ts/|trtllmGenKernels/fmha/cubin/kernelMetaInfo\.h$|cubin\.cpp$|cubin\.h$|trtllmGenKernels/fmha/trtllmGen_fmha_export/|trtllmGenKernels/fmha/cuda_ptx/|trtllmGenKernels/batchedGemm/trtllmGen_bmm_export/KernelMetaInfo\.h$|trtllmGenKernels/gemm/trtllmGen_gemm_export/KernelMetaInfo\.h$|\.cubin\.tar\.zst$)'
exclude: '(^cpp/tensorrt_llm/common/sha256/|^triton_kernels/|^tensorrt_llm/_torch/attention/backends/prims_ts/|^tensorrt_llm/_torch/visual_gen/cute_dsl_kernels/blackwell/sol_attn/|trtllmGenKernels/fmha/cubin/kernelMetaInfo\.h$|cubin\.cpp$|cubin\.h$|trtllmGenKernels/fmha/trtllmGen_fmha_export/|trtllmGenKernels/fmha/cuda_ptx/|trtllmGenKernels/batchedGemm/trtllmGen_bmm_export/KernelMetaInfo\.h$|trtllmGenKernels/gemm/trtllmGen_gemm_export/KernelMetaInfo\.h$|\.cubin\.tar\.zst$)'

default_install_hook_types: [pre-commit, commit-msg]
repos:
Expand Down
Loading
Loading