Skip to content

google/tensorstore

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f03e2ff · Apr 2, 2024
Jun 7, 2023
Feb 29, 2024
Feb 29, 2024
Mar 6, 2024
Mar 26, 2024
Apr 2, 2024
Apr 2, 2024
Mar 14, 2024
Dec 1, 2022
Mar 18, 2024
Dec 7, 2023
Apr 3, 2020
Oct 24, 2022
Apr 3, 2020
May 22, 2021
Apr 3, 2020
Jun 14, 2023
Dec 7, 2023
Apr 3, 2020
Jan 26, 2023
Jan 18, 2024
Dec 7, 2023
Feb 2, 2023
Aug 12, 2021
Mar 20, 2021
Oct 16, 2023

Repository files navigation

TensorStore

License PyPI Build Docs

TensorStore is an open-source C++ and Python software library designed for storage and manipulation of large multi-dimensional arrays that:

  • Provides advanced, fully composable indexing operations and virtual views.

  • Provides a uniform API for reading and writing multiple array formats, including zarr and N5.

  • Natively supports multiple storage systems, such as local and network filesystems, Google Cloud Storage, Amazon S3-compatible object stores, HTTP servers, and in-memory storage.

  • Offers an asynchronous API to enable high-throughput access even to high-latency remote storage.

  • Supports read caching and transactions, with strong atomicity, isolation, consistency, and durability (ACID) guarantees.

  • Supports safe, efficient access from multiple processes and machines via optimistic concurrency.

Documentation and installation instructions are at https://google.github.io/tensorstore.

Getting Started

To get started using the TensorStore Python API, you can install the tensorstore PyPI package using:

pip install tensorstore

Refer to the tutorials and API documentation, or the announcement on the Google Research Blog for more details.

This is not an officially supported Google product.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this software except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.