File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -327,13 +327,10 @@ def kernel(x, out):
327
327
expected = reduce_func (x , axis , keepdims = True )
328
328
np .testing .assert_array_equal (result , expected )
329
329
330
- @parameterized .product (
331
- reduce_func = [jnp .argmax , jnp .argmin ]
332
- )
333
- @jtu .skip_on_devices ('tpu' ) # TODO: apaszke - This test is breaking presubmits.
330
+ @parameterized .product (reduce_func = [jnp .argmax , jnp .argmin ])
334
331
def test_reduce_index (self , reduce_func ):
335
- if not jtu .if_cloud_tpu_at_least (2025 , 8 , 25 ):
336
- self .skipTest ("Requires libtpu built after 2025-08-25 " )
332
+ if not jtu .if_cloud_tpu_at_least (2025 , 8 , 29 ):
333
+ self .skipTest ("Requires libtpu built after 2025-08-29 " )
337
334
dtype = jnp .float32
338
335
axis = 1
339
336
if (axis == 1 and not jtu .is_device_tpu_at_least (version = 4 )):
You can’t perform that action at this time.
0 commit comments