MCPcopy Create free account
hub / github.com/dask/dask / rechunk

Method rechunk

dask/array/core.py:2804–2822  ·  view source on GitHub ↗

Convert blocks in dask array x for new chunks. Refer to :func:`dask.array.rechunk` for full documentation. See Also -------- dask.array.rechunk : equivalent function

(
        self,
        chunks="auto",
        threshold=None,
        block_size_limit=None,
        balance=False,
        method=None,
    )

Source from the content-addressed store, hash-verified

2802 return squeeze(self, axis)
2803
2804 def rechunk(
2805 self,
2806 chunks="auto",
2807 threshold=None,
2808 block_size_limit=None,
2809 balance=False,
2810 method=None,
2811 ):
2812 """Convert blocks in dask array x for new chunks.
2813
2814 Refer to :func:`dask.array.rechunk` for full documentation.
2815
2816 See Also
2817 --------
2818 dask.array.rechunk : equivalent function
2819 """
2820 from dask.array.rechunk import rechunk # avoid circular import
2821
2822 return rechunk(self, chunks, threshold, block_size_limit, balance, method)
2823
2824 def shuffle(
2825 self,

Callers 15

insertFunction · 0.95
test_fusion_barrier_taskFunction · 0.45
apply_gufuncFunction · 0.45
shuffle_sliceFunction · 0.45
to_zarrFunction · 0.45
unify_chunksFunction · 0.45
to_npy_stackFunction · 0.45
reshapeFunction · 0.45
overlapFunction · 0.45

Calls 1

rechunkFunction · 0.90