(input_batch)
| 124 | |
| 125 | @partial(pjit, in_shardings=None) |
| 126 | def fn(input_batch): |
| 127 | output_batch = ds.dispatch_global_batch(input_batch) |
| 128 | jax.tree.map(check_sharding, tree_paths(output_batch), output_batch) |
| 129 | return output_batch |
| 130 | |
| 131 | fn.lower(input_batch).compile() |
| 132 |
nothing calls this directly
no test coverage detected