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

Method rechunk

dask/array/core.py:2796–2814  ·  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

2794 return squeeze(self, axis)
2795
2796 def rechunk(
2797 self,
2798 chunks="auto",
2799 threshold=None,
2800 block_size_limit=None,
2801 balance=False,
2802 method=None,
2803 ):
2804 """Convert blocks in dask array x for new chunks.
2805
2806 Refer to :func:`dask.array.rechunk` for full documentation.
2807
2808 See Also
2809 --------
2810 dask.array.rechunk : equivalent function
2811 """
2812 from dask.array.rechunk import rechunk # avoid circular import
2813
2814 return rechunk(self, chunks, threshold, block_size_limit, balance, method)
2815
2816 def shuffle(
2817 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

Calls 1

rechunkFunction · 0.90