@@ -171,7 +171,7 @@ def test_user_defined_persistent_non_warp_specialized_gemm(M, N, K, BLOCK_M, BLO
171171 num_ctas = NUM_CTAS )
172172
173173 th_c = torch .matmul (a , b )
174- torch .testing .assert_close (th_c , c , atol = 5e-1 , rtol = 0 , check_dtype = False )
174+ torch .testing .assert_close (th_c , c , atol = 1e-2 , rtol = 0 , check_dtype = False )
175175
176176
177177@triton .jit
@@ -317,7 +317,7 @@ def test_non_persistent_warp_specialized_gemm(M, N, K, BLOCK_M, BLOCK_N, BLOCK_K
317317 num_ctas = NUM_CTAS )
318318
319319 th_c = torch .matmul (a , b )
320- torch .testing .assert_close (th_c , c , atol = 5e -2 , rtol = 0 , check_dtype = False )
320+ torch .testing .assert_close (th_c , c , atol = 1e -2 , rtol = 0 , check_dtype = False )
321321
322322
323323@triton .jit
@@ -467,7 +467,7 @@ def test_user_defined_persistent_warp_specialized_gemm(M, N, K, BLOCK_M, BLOCK_N
467467 num_warps = 4 , num_ctas = NUM_CTAS )
468468
469469 th_c = torch .matmul (a , b )
470- torch .testing .assert_close (th_c , c , atol = 5e-1 , rtol = 0 , check_dtype = False )
470+ torch .testing .assert_close (th_c , c , atol = 1e-2 , rtol = 0 , check_dtype = False )
471471
472472
473473@triton .jit
0 commit comments