(a, q, axis, keepdims)
| 1840 | |
| 1841 | |
| 1842 | def _get_quantile_chunks(a, q, axis, keepdims): |
| 1843 | if keepdims: |
| 1844 | rest = (1 if ax in axis else c for ax, c in enumerate(a.chunks)) |
| 1845 | else: |
| 1846 | rest = (c for ax, c in enumerate(a.chunks) if ax not in axis) |
| 1847 | return [*q.shape, *rest] |
no outgoing calls
no test coverage detected
searching dependent graphs…