MCPcopy
hub / github.com/dask/dask / to_tiledb

Method to_tiledb

dask/array/core.py:3017–3030  ·  view source on GitHub ↗

Save array to the TileDB storage manager See https://docs.tiledb.io for details about the format and engine. See function :func:`dask.array.to_tiledb` for argument documentation. See also -------- dask.array.to_tiledb : equivalent function

(self, uri, *args, **kwargs)

Source from the content-addressed store, hash-verified

3015 return to_zarr(self, *args, **kwargs)
3016
3017 def to_tiledb(self, uri, *args, **kwargs):
3018 """Save array to the TileDB storage manager
3019
3020 See https://docs.tiledb.io for details about the format and engine.
3021
3022 See function :func:`dask.array.to_tiledb` for argument documentation.
3023
3024 See also
3025 --------
3026 dask.array.to_tiledb : equivalent function
3027 """
3028 from dask.array.tiledb_io import to_tiledb
3029
3030 return to_tiledb(self, uri, *args, **kwargs)
3031
3032
3033def ensure_int(f):

Callers 1

test_tiledb_roundtripFunction · 0.80

Calls 1

to_tiledbFunction · 0.90

Tested by 1

test_tiledb_roundtripFunction · 0.64