Skip to content

Commit

Permalink
Skip tri test in latest version of JAX
Browse files Browse the repository at this point in the history
Related to jax-ml/jax#22751
  • Loading branch information
ricardoV94 committed Aug 4, 2024
1 parent f9bf218 commit de06ff6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/link/jax/test_tensor_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,10 @@ def test_tri():
compare_jax_and_py(fgraph, [])


@pytest.mark.skipif(
jax.__version__ == "0.4.31",
reason="https://github.com/google/jax/issues/22751",
)
def test_tri_nonconcrete():
"""JAX cannot JIT-compile `jax.numpy.tri` when arguments are not concrete values."""

Expand Down

0 comments on commit de06ff6

Please sign in to comment.