(old_chunks, new_chunks, itemsize=1, block_size_limit=1e7, threshold=4)
| 407 | |
| 408 | |
| 409 | def _plan(old_chunks, new_chunks, itemsize=1, block_size_limit=1e7, threshold=4): |
| 410 | return plan_rechunk( |
| 411 | old_chunks, |
| 412 | new_chunks, |
| 413 | itemsize=itemsize, |
| 414 | block_size_limit=block_size_limit, |
| 415 | threshold=threshold, |
| 416 | ) |
| 417 | |
| 418 | |
| 419 | def _assert_steps(steps, expected): |
no test coverage detected