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
Original file line number Diff line number Diff line change
Expand Up @@ -765,9 +765,11 @@ def test_selfsampling_route_sm103_large_batch_k2048_register_rung() -> None:

@pytest.mark.skipif(getSMVersion() != 103, reason="requires an SM103 GPU")
def test_selfsampling_sm103_b512_k2048_cuda_graph() -> None:
"""Exercise the B300-only register plan through warmup and graph replay."""
"""Exercise the 148-SM SM103 register plan through warmup and graph replay."""
rows, n, npad, top_k = 512, 4111, 4160, 2048
properties = torch.cuda.get_device_properties(torch.cuda.current_device())
if properties.multi_processor_count != 148:
pytest.skip("requires an SM103 GPU with 148 SMs")
plan = ss_host.route(
rows,
n,
Expand Down
Loading