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
4 changes: 4 additions & 0 deletions tests/python/tirx/codegen/test_ptx_dialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -2419,6 +2419,10 @@ def sm107_collector_kernel(a_ptr: T.handle):
_assert_ptxas_ok(collector_src, arch="sm_107f")


@pytest.mark.skipif(
not env.has_nvcc_version(13, 4),
reason="collector-qualified block_scale MMA is a PTX 9.4 form; need nvcc >= 13.4",
)
@requires_nvcc
def test_ptx_tcgen05_mma_block_scale_collector_a_without_block_size():
"""SM107 activation-stationary FP8 accepts collector A without `.block*`."""
Expand Down
Loading