Skip to content
Merged
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions tensorrt_llm/_torch/attention_backend/trtllm.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,9 @@ def is_nvfp4_output_kernel_available(
is_mla_enable,
)

def is_sm_version_trtllm_gen_kernel(self, sm):
return not (sm < 100 or sm in [120, 121])


@dataclass(kw_only=True)
class TrtllmAttentionMetadata(AttentionMetadata):
Expand Down
Loading