Skip to content

Commit

Permalink
fix: CI integration tests (#28802)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong authored Aug 10, 2024
1 parent fc6fb96 commit 78b4ce7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ivy_tests/test_integrations/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

jax.config.update("jax_enable_x64", True)

jax_kornia = ivy.transpile(kornia, source="torch", to="jax")
np_kornia = ivy.transpile(kornia, source="torch", to="numpy")
tf_kornia = ivy.transpile(kornia, source="torch", to="tensorflow")
jax_kornia = ivy.graph_transpile(kornia, source="torch", to="jax")
np_kornia = ivy.graph_transpile(kornia, source="torch", to="numpy")
tf_kornia = ivy.graph_transpile(kornia, source="torch", to="tensorflow")


# Helpers #
Expand Down

0 comments on commit 78b4ce7

Please sign in to comment.