Skip to content

Commit

Permalink
Remove test with non-power-of-2 cluster size (unsupported by triton)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 706688862
  • Loading branch information
Google-ML-Automation committed Dec 16, 2024
1 parent 0a8bdd5 commit 91a29fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cluster_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def dummy_kernel(x_ptr, o_ptr):

class ClusterTest(parameterized.TestCase):

@parameterized.parameters(1, 2, 3, 4, 8)
@parameterized.parameters(1, 2, 4, 8)
def test_cluster(self, num_ctas):
if 'h100' not in jax.devices()[0].device_kind.lower():
self.skipTest('Clusters available only on H100s.')
Expand Down

0 comments on commit 91a29fb

Please sign in to comment.