Skip to content

Commit 2ac2692

Browse files
hawkinspGoogle-ML-Automation
authored andcommitted
Disable backwards compatibility test for Triton IR.
Triton doesn't promise backwards compatibility of its IR, so the test is misguided: it is testing a property that isn't true. If we wanted to promise backwards compatibility, we would need to use a versioned IR across the boundary. PiperOrigin-RevId: 702725103
1 parent 09177cf commit 2ac2692

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/pallas/export_back_compat_pallas_test.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"""
1919

2020
import math
21+
import unittest
2122

2223
from absl.testing import absltest
2324
import jax
@@ -47,6 +48,9 @@ def setUp(self):
4748
self.skipTest("Only works on GPUs with capability >= sm80")
4849
super().setUp()
4950

51+
@unittest.skip("TODO(necula): This test is checking backwards compatibility "
52+
"of Triton IR, but Triton doesn't promise backwards "
53+
"compatibility for its IR.")
5054
def test_triton_add_one(self):
5155
def func(x):
5256
def add_one(x_ref, o_ref):

0 commit comments

Comments
 (0)