Skip to content

Commit

Permalink
Skip the test for stream_executor like all the other tests in this file
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 496107041
  • Loading branch information
yashk2810 authored and jax authors committed Dec 17, 2022
1 parent e6e1836 commit b1415bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/debugging_primitives_test.py
Expand Up @@ -812,6 +812,10 @@ def f2(x):
self.assertEqual(output(), "140\n")

def test_nested_pjit_debug_print(self):
if xla_bridge.get_backend().runtime_type == 'stream_executor':
raise self.skipTest(
'Host callback not supported for runtime type: stream_executor.')

if not jax.config.jax_array:
self.skipTest("This test only works with jax.Array.")

Expand Down

0 comments on commit b1415bb

Please sign in to comment.