enable symbolic_ops and jits test of two vars (#3513)

This commit is contained in:
chenyu
2024-02-27 11:17:46 -05:00
committed by GitHub
parent ea4b8e5b1f
commit 969b57f0fe
2 changed files with 0 additions and 4 deletions

View File

@@ -124,7 +124,6 @@ class TestSymbolicJit(unittest.TestCase):
np.testing.assert_allclose(symbolic, expected, atol=1e-6, rtol=1e-6)
assert_jit_cache_len(jf, 1)
@unittest.skip("two vars not supported")
def test_two_vars_plus1_ij(self):
def f(a, b): return (a@b+1).realize()
jf = TinyJit(f)
@@ -139,7 +138,6 @@ class TestSymbolicJit(unittest.TestCase):
np.testing.assert_allclose(symbolic, expected, atol=1e-6, rtol=1e-6)
assert_jit_cache_len(jf, 1)
@unittest.skip("two vars not supported")
def test_two_vars_plus1_ji(self):
def f(a, b): return (a@b+1).realize()
jf = TinyJit(f)