Crate ztensor

Crate ztensor 

Source
Expand description

zTensor - A high-performance tensor serialization format

This library provides read/write support for the zTensor v1.1 file format, designed for efficient storage and retrieval of tensor data with support for compression, checksums, and multiple tensor layouts.

For backwards compatibility with v0.1.0 files, use the compat module.

Re-exports§

pub use error::ZTensorError;
pub use models::ChecksumAlgorithm;
pub use models::Component;
pub use models::DType;
pub use models::Encoding;
pub use models::Manifest;
pub use models::Object;
pub use reader::Pod;
pub use reader::ZTensorReader;
pub use writer::ZTensorWriter;
pub use compat::LegacyReader;
pub use compat::is_legacy_file;
pub use compat::is_legacy_format;

Modules§

compat
Read-only backwards compatibility with zTensor v0.1.0 format.
error
Error types for zTensor operations.
ffi
FFI bindings for Python/C interop.
models
Data models for zTensor v1.1 format.
reader
zTensor file reader.
utils
Utility functions for zTensor operations.
writer
zTensor file writer.