Disable for PTX as well (#4838)

Co-authored-by: nimlgen <138685161+nimlgen@users.noreply.github.com>
This commit is contained in:
Szymon Ożóg
2024-06-05 09:37:59 +02:00
committed by GitHub
parent 890e7c12bb
commit e47277d18a

View File

@@ -1319,7 +1319,7 @@ class TestKernelOpts(unittest.TestCase):
check_fused_tc_opt(tc, r0, r1, [a, b, c, d])
def test_padto_matmul(self):
if CI and Device.DEFAULT in ["AMD", "NV"]: self.skipTest("super slow on CUDA and AMD because of the big grid dims")
if CI and Device.DEFAULT in ["AMD", "NV", "CUDA"]: self.skipTest("super slow on CUDA and AMD because of the big grid dims")
N = 17 * 17
Tensor.manual_seed(289)
a = Tensor.rand(N, N)