(chunks, start, stop)
| 218 | |
| 219 | |
| 220 | def _cal_max_chunk_size(chunks, start, stop): |
| 221 | return int( |
| 222 | reduce( |
| 223 | mul, |
| 224 | [max(chunks[axis]) for axis in range(start, stop + 1)], |
| 225 | ) |
| 226 | ) |
| 227 | |
| 228 | |
| 229 | def expand_tuple(chunks, factor): |
no test coverage detected
searching dependent graphs…