Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions haiku/_src/summarise_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,6 @@ def test_equivalent_when_passing_transformed_fn(self, jax_transform):
rows = tabulate_to_list(f)
self.assertNotEmpty(rows)
self.assertEqual(rows, tabulate_to_list(f_transform))
if not jax.config.jax_pmap_shmap_merge and jax_transform == jax.pmap:
# NOTE(dsuo): jax.pmap without args will raise now.
self.assertEqual(rows, tabulate_to_list(jax_transform(f_transform.init)))
self.assertEqual(rows, tabulate_to_list(jax_transform(f_transform.apply)))


class MultipleParametersModule(module_lib.Module):
Expand Down
Loading