Skip to content

Commit

Permalink
Temporarily disable test_jit_device_assignment.
Browse files Browse the repository at this point in the history
Future breaking changes to jaxlib will break this test, so disable it
until we update jaxlib and then can update jax and reenable the test.
  • Loading branch information
skye committed Sep 4, 2019
1 parent 146b5d1 commit 76156e5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/api_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,7 @@ def scalar_solve2(f, y):
self.assertAllClose(grad, api.grad(pow)(5.0, 1.5), check_dtypes=False)

def test_jit_device_assignment(self):
raise unittest.SkipTest("Temporarily disabled while device API is being changed.")
device_num = xb.device_count() - 1
x = api.jit(lambda x: x, device_assignment=device_num)(3.)
self.assertIsInstance(x, DeviceArray)
Expand Down

0 comments on commit 76156e5

Please sign in to comment.