Skip to content

Commit

Permalink
Merge pull request #16344 from JoeyTeng:cleanup-test-lax_control_flow…
Browse files Browse the repository at this point in the history
…_test

PiperOrigin-RevId: 540164431
  • Loading branch information
jax authors committed Jun 14, 2023
2 parents 4d512c9 + c2c8314 commit 9015920
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/lax_control_flow_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,6 @@ def scan_with_for(f, *args, **kwargs):
def scan_with_remat_for(f, *args, **kwargs):
return jax.remat(lambda *args: for_loop.scan(f, *args, **kwargs))(*args)

SCAN_IMPLS = [
(lax.scan, 'unroll1'),
(partial(lax.scan, unroll=2), 'unroll2'),
(scan_with_new_checkpoint , 'new_checkpoint'),
(scan_with_new_checkpoint2, 'new_checkpoint2'),
]

SCAN_IMPLS_WITH_FOR = [
(lax.scan, 'unroll1'),
(partial(lax.scan, unroll=2), 'unroll2'),
Expand Down

0 comments on commit 9015920

Please sign in to comment.