cubed.store

Contents

cubed.store#

cubed.store(sources, targets, executor=None, **kwargs)#

Save source arrays to array-like objects.

In the current implementation targets must be Zarr arrays.

Note that this operation is eager, and will run the computation immediately.

Parameters:
  • x (cubed.Array or collection of cubed.Array) – Arrays to save

  • store (zarr.Array or collection of zarr.Array) – Zarr arrays to write to

  • executor (cubed.runtime.types.Executor, optional) – The executor to use to run the computation. Defaults to using the in-process Python executor.