Skip to main content

Unified, zero-copy, and safe I/O for deep learning formats.

Project description

ztensor

CI Crates.io PyPI Docs.rs License: MIT

Unified, zero-copy, and safe I/O for deep learning formats.

Reading

zTensor reads .safetensors, .pt, .gguf, .npz, .onnx, .h5, and .zt files through a single API. Format detection is automatic. In zero-copy mode, it consistently achieves ~2 GB/s across all formats. For .pt files, it parses pickle using a restricted VM in Rust that only extracts tensor metadata, so no arbitrary code can execute.

Cross-format read throughput

Format zTensor zTensor (zc off) Reference impl.
.zt 2.19 GB/s 1.37 GB/s n/a
.safetensors 2.19 GB/s 1.46 GB/s 1.33 GB/s (safetensors)
.pt 2.04 GB/s 1.33 GB/s 0.89 GB/s (torch)
.npz 2.11 GB/s 1.41 GB/s 1.04 GB/s (numpy)
.gguf 2.11 GB/s 1.38 GB/s 1.39 GB/s / 2.15 GB/s† (gguf)
.onnx 2.07 GB/s 1.29 GB/s 0.76 GB/s (onnx)
.h5 1.96 GB/s 1.30 GB/s 1.35 GB/s (h5py)

Llama 3.2 1B shapes (~2.8 GB). Linux, NVMe SSD, median of 5 runs, cold reads. ONNX at 1 GB (protobuf limit). †GGUF's native reader also supports mmap (2.15 GB/s). See Benchmarks for details.

Writing

zTensor writes exclusively to .zt, our own format. Existing tensor formats each solve part of the problem, but none solve it cleanly:

  • Pickle-based formats (.pt, .bin) execute arbitrary code on load; a model file can run anything on the reader's machine.
  • SafeTensors is safe but treats every tensor as a flat, dense array of a fixed dtype. New formats can't be represented without a spec change.
  • GGUF handles quantization but bakes each scheme into the dtype enum, coupling the format to the llama.cpp ecosystem.
  • NumPy .npz has no alignment guarantees (no mmap), no compression beyond zip, and no structured metadata.

Most formats equate "tensor" with "flat array of one dtype." Once you need something structurally richer (sparse indices alongside values, or quantized weights alongside scales), the format can't express it without flattening into separate arrays held together by naming conventions.

.zt models each tensor as a composite object with typed components, so dense, sparse, and quantized data all fit without extending the format. It also supports zero-copy mmap reads, zstd compression, integrity checksums, and streaming writes. Read the full specification.

Write throughput by workload

Format Large Mixed Small
.zt 3.62 GB/s 3.65 GB/s 1.42 GB/s
.safetensors 1.72 GB/s 1.77 GB/s 1.48 GB/s
.pt (pickle) 3.62 GB/s 3.68 GB/s 2.00 GB/s
.npz 2.40 GB/s 2.40 GB/s 0.51 GB/s
.gguf 3.85 GB/s 3.86 GB/s 1.06 GB/s
.onnx 0.28 GB/s 0.29 GB/s 0.32 GB/s
.h5 3.67 GB/s 3.69 GB/s 0.27 GB/s

Three workloads at 512 MB, copy=True: Large (few big matrices), Mixed (realistic model shapes), Small (many ~10 KB parameters). See Benchmarks for details.

Format Comparison

Feature .zt .safetensors .gguf .pt (pickle) .npz .onnx .h5
Zero-copy read
Safe (no code exec)
Streaming / append
Sparse tensors
Per-tensor compression ✗¹
Extensible types N/A

¹ .npz uses archive-level zip/deflate, not per-tensor compression. ² Partial support (requires specific alignment or uncompressed data). ³ Zip append support (not standard API).

Installation

pip install ztensor           # Python
cargo add ztensor              # Rust
cargo install ztensor-cli     # CLI

Documentation

  • Website — guides, API reference, benchmarks
  • docs.rs — Rust API docs

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ztensor-1.2.3.tar.gz (320.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ztensor-1.2.3-cp313-cp313-win_amd64.whl (798.5 kB view details)

Uploaded CPython 3.13Windows x86-64

ztensor-1.2.3-cp313-cp313-win32.whl (735.7 kB view details)

Uploaded CPython 3.13Windows x86

ztensor-1.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ztensor-1.2.3-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

ztensor-1.2.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

ztensor-1.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ztensor-1.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ztensor-1.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

ztensor-1.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

ztensor-1.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

ztensor-1.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (995.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ztensor-1.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

ztensor-1.2.3-cp313-cp313-macosx_11_0_arm64.whl (874.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ztensor-1.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ztensor-1.2.3-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

ztensor-1.2.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

ztensor-1.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ztensor-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ztensor-1.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

ztensor-1.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

ztensor-1.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

ztensor-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (996.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ztensor-1.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

ztensor-1.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ztensor-1.2.3-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

ztensor-1.2.3-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

ztensor-1.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ztensor-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ztensor-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

ztensor-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

ztensor-1.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

ztensor-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (998.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ztensor-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

File details

Details for the file ztensor-1.2.3.tar.gz.

File metadata

  • Download URL: ztensor-1.2.3.tar.gz
  • Upload date:
  • Size: 320.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.3

File hashes

Hashes for ztensor-1.2.3.tar.gz
Algorithm Hash digest
SHA256 927fc1f16702aed117bf69cb65c6ac0db13cb6f9c2aaea84c54f322c5152d29b
MD5 993dcb005a773e6c23085c7cc68ca624
BLAKE2b-256 adb7bf8f64c0dc529b1d29cc631c5655c741a8c99f73e6d2740d5e579ea8369e

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ztensor-1.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 798.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.3

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e624a5116ebc4c3afa8c25c663d9ef275564f4361711ad626dfc63210e0e0f2
MD5 9ba7216b0bd16b1d9649a131188f9da0
BLAKE2b-256 7d029088f91073da23a17547869ad512fd59c33b7092a2c361b02f7e99593860

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: ztensor-1.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 735.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.3

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c185a534a495258ba18e3f13a99d393d9226a6e0b1b6ff14f77177da64773857
MD5 dc75557040a8a5de4d1517601886779a
BLAKE2b-256 8959e9c64343b1fa40fd4347e12f2a3b13e3fde1a4c909ff358366ff5f509100

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bc0e6f06fe09cd806a7aab7cae12af68c6f608e13fc4250ab44094094133fda
MD5 277586f60dd341f87d328c65c6301459
BLAKE2b-256 60679cb428ea19f3e26264073dac3acb40188e7266a9bab766838d447f189c0f

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d98946445601fa4562f9901fe82cc32f6ad1a9fa1d611b7e6f3aff4b0ae7e695
MD5 432f2c19857cc765e61a386ee8b1c87d
BLAKE2b-256 1fc6f86bc0e634b3a440962487c8c01650763ddd0cc08731e07b6ac078ec30f9

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25821fc903a4cb6cacf7b82499b19684e1d854e5f151f4e115dc36cd185d8652
MD5 cae5609093dd1894987a58500a17d48d
BLAKE2b-256 8eb5db5c32e796c0b3558efc9c9327e5ff608f51c0fb3d60e586d4270f549f3c

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c23401033632234a13b2d6f1f472f990a901d025b5cac69e8a761f8ec42a2b72
MD5 3a53afcaacf2a0600f5ef13ff7f7ffd8
BLAKE2b-256 d25154ccd8736897e79b73a82f5d2106e103b0c53c84518b7f5d8cd64e374553

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f71382d8dbff76d24ff0cdc5e22c6b6ec1106312e72d289af96c305016a7d08a
MD5 1a0f51fb77c6cc9bc7c22aca978b246b
BLAKE2b-256 245fef8340b48679c0b6da7a8d07c64208fa84742fd1ce4cfbc9b8240af601a3

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82349fc294eec5d154273ce0ef93735b5ce5d065e7392497c347d5cf68d58316
MD5 2a15e114d3741ff8f9883decd508a9d6
BLAKE2b-256 ee76edd1a312cc76bfb58338cc86481d7d4a20e9982ff78203ec55ca3934ebe4

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 623641822faa0dcad01661348cd1b3dc1f03b905a292ab48d29db47bc3ab15cf
MD5 66a6b1296a8b5dd72aac6da86249318d
BLAKE2b-256 ccd67162a4012803089e79f2c6aecaa00b64dce874e992380d43170ad0310b82

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76a41897fec14c63b766f0e72f5404c3c2d2e94292edce2cc218c71940c44190
MD5 62f1dabc1d63243c92e28ed1603f3d19
BLAKE2b-256 a11154143877ef10b8d2b517c9cb1bde3d393577c4fd6a2eb73ba7a71d6e303a

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c37a22b9a2c4feddf9bf6dde47f3132b8ef433527a1afb45ecdd364b61c7300
MD5 a686774d0487aca6d41ee7dd59b7a18b
BLAKE2b-256 0791a8b087f94e2833f4a4c34d4b2ebc5b96ef9d27279c23855a871316819c3c

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4d3d151291ce90d3444b04c3aeb62692f65d8c63f9146812b6758bf6e71c662
MD5 2857857dad4223137874fb7b3076650a
BLAKE2b-256 8c812dfa07e3c36da8958bb9dfe2ea9a0388e2d1acaba355f58dacc35d616661

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6ece5aa7a227eb120ec979df1ade8886196786bb5d0fac402f5c8fb9e4e16e2
MD5 a44d2dd49f9b6a3b8dc9a4c6da57d853
BLAKE2b-256 8f37de7ed9110d6ad889b1aa02d248ca042283225401c127c2fd6e179c5e3910

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0cc14f7ccd0093a6a4545239541966676ed90ffb37155c00e05657357e774d1
MD5 c13cc9d91d1caaec7882a4c266dad39c
BLAKE2b-256 6a43f846ba5a1e3a101e82599c8c2afb76677a77ee2ca5820d17ecd3c567c36d

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82b7cb569a88d5633cbf91d1c49ebc9825a932098e69f78d7e30875a7b942ce7
MD5 ccbd983109606f14053ac877bf3bdc6d
BLAKE2b-256 f2362b2e52117811913360b9904fe08b048b637a4433f90949f6cd67394f9969

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f16f0f8729c83fa4cc807c5692a02e5547bdb88ebd4aab5aa8544118bd320664
MD5 d5a411a1f0ff405b46a15ac63e489872
BLAKE2b-256 92bcf4371e818f7eb3d61e6b935145ac80d742cd86c528086301fce8638639b4

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40a8b61a968c3db7f366ae46e1b460333c5666a6ca5e1873b296b760d0357dca
MD5 a741f54de01353d804a1fbac0b5fa56a
BLAKE2b-256 b34266c6bd929f8a38afe41926da17e25d788c46621f537a34ea3af583c9d17c

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d9369be6e2aa88edd2ccc246e4f7d99c051970faa1487e57a20636464def9d
MD5 50e9ae9cd2375650b415fc2045b8b1cb
BLAKE2b-256 55f29df64303c30628133ec21575ffd215221a9f85c658e9af4f6064ffc80ce2

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 000585f372d5e2de39c15bb343ea4c9c730b29f6bd21fa39e6203888c5303441
MD5 6edbd63e0a5503d3b22d2a865888a3d5
BLAKE2b-256 87967fed7baedf46379d669f8b17ef6e28d828439fa4c04e05b4c345cdbd5550

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f56c6126f6f2dc12601779c797ae0d1694f7dc9dd635888f5027691279077281
MD5 9998439ccd0fa084b066b9dc9207a1ac
BLAKE2b-256 089245c7bc7e56e49c76f4cfe6900675e6525ccd0c46be580ac742024004fecc

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21c23d1bc3c26065c93f54d6d593c60420319a2e72f48ac31c10d1fbd1f289e2
MD5 f7d8d3eb4cfa9093349c1d1890f2fa8d
BLAKE2b-256 2fadfce47e7e22ab3f5fa50da19603a0f4f51c75433f8c3ccf4674d6a0e84ae9

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fe3c143c1b22f8ef33c1a20c8795e627d9b3ff62711893652c388e59496a0f0
MD5 9991b43578023b55679e4ff1dca25126
BLAKE2b-256 d902615ace0e89cc74360bf82f3e0e55289405fffefc4d7774d50608938c8181

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79c62e26ba0ccc3e1ef0a1df355af323985f842aea2ca1aed7f17abd988ce96e
MD5 f8ed815cf814ea62c60a4af71eba88e8
BLAKE2b-256 84804c328adf5218754843a5a47a3354a732cce2f156232bc55f4fa060c1df07

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0d574579bc0687bfeced3d97ba42a8f853bab298f99ddc2086effce8d287948
MD5 a95a311440164b4522e54a5fbcef0ffa
BLAKE2b-256 09205b23e7fb96249dbd92b6afbfb0957685547719dff232e882fc387e546932

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abe5e44fdee09317be61d6c0239e09bf6a393f09a3a93f428af7765c1e01bba0
MD5 ebe1f043935e6f000532c861a1e6c0e8
BLAKE2b-256 ba6171000157d5ee9f40e53afa955f2f020ccbd62f23a3159ed5834310d54d19

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd4f87307aab5583eb6bfd79bd4733593e9b3494e0156e408d01ca9f262efebb
MD5 54d1ac43469a14ef784ab588c612a73f
BLAKE2b-256 17ad7facc5749fbd5698fcc96609c2aed42ee5d514164434d0662fa8290d70c3

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 367b06d36c8d8c98ca8902f407b16ec3584f58c92627e5c94b5877b571968e3f
MD5 b5b20d5300e73e27c46d99fe8082e5fe
BLAKE2b-256 57fb5b86e6a0da7644ac49b8a1650a97a24bced7c30d399bc1e3b5df3b0b9f59

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc846cdbc68d5f600355cd32f0313182d15991adc4bcc747a90597e2c793c439
MD5 2dd4f23a61d068e2c0b4aef45a041699
BLAKE2b-256 ffd3657c215e6e63733971ea3d97f3c2f3d03273e574895b2c0e09bfcef7d4f6

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fecec2ff7154e42168a2e4b1bab1055660d0ed8a8ed31c7005ebef4965b0d08
MD5 bd657ce77abad4680efd39a4d0fb13c3
BLAKE2b-256 3dcc508fdb90eed34da6536e9fa0a0dd7958949a2d070787256ef0a005fed3f0

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf651cd2f8250ff5bdae506b17557466a4f6d78e82833c5b7b417fef6ec812f3
MD5 d104b15a0afbf01055c5ecc0227ea83d
BLAKE2b-256 cf30ca8d119ad2750e5a0b4904aa53157ad6c0bce128d3aeed807f18c9af9456

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bebe30ac9017d935a080088d5ed27ff5814da974ef5bb608d558820fd6b57a06
MD5 1ae19429d4513452e7a3b1fce6cfc849
BLAKE2b-256 367e43afb760740dfe1389c47fcb88c737dc932722f1b4090205e39689abe2ab

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 731ec3fc38bba397cf1e519503337a0779770116860ee0c9a29ba8b5fbbb0f6c
MD5 006dcdcaee9d850dd8b8e7228a436c34
BLAKE2b-256 a9c803e23fe805eb4550f1af56b9795eba89229566b03fa85f41f3917aade39d

See more details on using hashes here.

File details

Details for the file ztensor-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ztensor-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dff41814f1edad3b0adb7e99a4aff3b2a22ea7b94a86cc5457e3f0ada21c7bb9
MD5 55ef7912cc3e67d6217e2af0e7dd8095
BLAKE2b-256 6cfb8e8d7cf9707440bacf2b2e503b8dbd7657119406c0f6a9036f07a2bfceee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page