(old_chunks, new_chunks, threshold)
| 679 | |
| 680 | |
| 681 | def _graph_size_threshold(old_chunks, new_chunks, threshold): |
| 682 | return threshold * (_number_of_blocks(old_chunks) + _number_of_blocks(new_chunks)) |
| 683 | |
| 684 | |
| 685 | def _compute_rechunk(x, chunks): |
no test coverage detected