Skip to main content

High-performance zero-copy tensor protocol

Project description

Tenso Banner

Tenso

Up to 35x faster than Apache Arrow on deserialization. 46x less CPU than SafeTensors.

Zero-copy, SIMD-aligned tensor protocol for high-performance ML infrastructure.

PyPI version Python 3.10+ License: Apache 2.0


Why Tenso?

Most serialization formats are designed for general data or disk storage. Tenso is focused on network tensor transmission where every microsecond matters.

The Problem

Traditional formats waste CPU cycles during deserialization:

  • SafeTensors: 37.1% CPU usage (great for disk, overkill for network)
  • Pickle: 40.9% CPU usage + security vulnerabilities
  • Arrow: Faster on serialization, but up to 32x slower on deserialization for large tensors

The Solution

Tenso achieves true zero-copy with:

  • Minimalist Header: Fixed 10-byte header eliminates JSON parsing overhead.
  • 64-byte Alignment: SIMD-ready padding ensures the data body is cache-line aligned.
  • Direct Memory Mapping: The CPU points directly to existing buffers without copying.

Result: 0.8% CPU usage vs >40% for SafeTensors/Pickle.


Benchmarks

System: Python 3.12.9, NumPy 2.3.5, 12 CPU cores, M4 Pro

1. In-Memory Serialization (LLM Layer - 64MB)

Format Size Serialize Deserialize Speedup (Deser)
Tenso 64.00 MB 3.51 ms 0.004 ms 1x
Arrow 64.00 MB 7.06 ms 0.011 ms 2.8x slower
SafeTensors 64.00 MB 8.14 ms 2.39 ms 597x slower
Pickle 64.00 MB 2.93 ms 2.71 ms 677x slower
MsgPack 64.00 MB 10.44 ms 3.05 ms 763x slower

Note: Tenso (Vect) variant is even faster with 0.000 ms deserialize time.

2. Disk I/O (256 MB Matrix)

Format Write Read
Tenso 29.41 ms 36.28 ms
NumPy .npy 24.83 ms 43.08 ms
Pickle 49.90 ms 24.24 ms

3. Stream Reading (95 MB Packet)

Method Time Throughput Speedup
Tenso read_stream 7.68 ms 12,417 MB/s 1x
Optimised Loop 13.89 ms 7,396 MB/s 1.9x slower

4. CPU Usage (Efficiency)

Format Serialize CPU% Deserialize CPU%
Tenso 117.3% 0.8%
Arrow 57.1% 1.0%
SafeTensors 67.1% 37.1%
Pickle 44.0% 40.9%

5. Arrow vs Tenso (Comparison)

Size Tenso Ser Arrow Ser Tenso Des Arrow Des Speedup
Small 0.130ms 0.056ms 0.009ms 0.035ms 4.1x
Medium 0.972ms 0.912ms 0.020ms 0.040ms 2.0x
Large 3.166ms 3.655ms 0.019ms 0.222ms 11.8x
XLarge 19.086ms 28.726ms 0.023ms 0.733ms 32.0x

6. Network Performance

  • Packet Throughput: 89,183 packets/sec (over localhost TCP)
  • Latency: 11.2 µs/packet
  • Async Write Throughput: 88,397 MB/s (1.4M tensors/sec)

When should I use Tenso?

Tenso is built for one pattern: serialize once, deserialize many times, over the network or between processes. Reading data back is effectively free (a zero-copy memory view), so the more often your tensors are read, the more Tenso wins.

Reach for Tenso when

  • You serve models over a network or RPC. Inference nodes spend ~0.8% CPU decoding tensors instead of ~40%, leaving the cores for actual compute.
  • You pass tensors between machines or processes — gradients/activations in distributed training (native Ray integration), or zero-copy hand-offs via shared memory (TensoShm).
  • Latency is critical — real-time inference, robotics, sensor fusion (single-digit-µs reads).
  • You stream many tensors — high-throughput pipelines (1.4M tensors/sec), with write_stream sending straight from the array's own memory.
  • You feed GPUs from the network or disk with minimal host involvement.
  • You want integrity without overhead — optional 64-bit XXH3 checksums.

Consider an alternative when

  • You store model weights on disk and rarely reload themSafeTensors is purpose-built for that.
  • You need columnar analytics or a data ecosystem (filters, Parquet, query engines) → Apache Arrow.
  • You're serializing arbitrary Python objects, not tensors → pickle (but never on untrusted input).
  • You only ever write and never read back — Tenso's edge is on the read side, so the payoff is smaller.

Note on writes: dumps() returns a fresh bytes object, so it pays a one-time buffer-allocation cost like any format that does. For write-heavy or networked paths, prefer write_stream / iter_dumps, which send the tensor's own memory with zero body copy.

How it compares

vs. Built for Where Tenso pulls ahead
Pickle Arbitrary Python objects ~600x faster reads, ~50x less CPU, and no arbitrary-code-execution risk
SafeTensors Safe on-disk weight storage ~600x faster reads — 0.8% vs 37% CPU, built for the wire, not the disk
Apache Arrow Columnar data ecosystems Up to 32x faster deserialization on large tensors, with a tiny header instead of a full columnar runtime
NumPy .npy Saving arrays to disk Faster reads/writes plus streaming, integrity checks, and multi-tensor bundles

Star History

Star History Chart


Installation

Tenso ships from one codebase to three ecosystems — all backed by the same Rust core.

Python

pip install tenso

Prebuilt wheels (with the compiled core inside, no toolchain needed) cover Linux x86_64/aarch64, macOS Apple Silicon, and Windows x64. Optional extras:

pip install tenso[api]    # gRPC, FastAPI, Ray integration
pip install tenso[gpu]    # GPU acceleration (CuPy/PyTorch/JAX)

Rust

cargo add tenso
use tenso::{ArraySpec, Dtype, EncodeOpts, dense_required_size, encode_dense_into, decode};

let spec = ArraySpec { data: &bytes, dtype: Dtype::F32, shape: &[2, 3] };
let opts = EncodeOpts::default();

let mut buf = vec![0u8; dense_required_size(&spec, &opts)?];
encode_dense_into(&spec, &mut buf, &opts)?;
let decoded = decode(&buf)?;   // borrows buf, zero-copy

The C ABI (tenso-ffi), CUDA backend (tenso-cuda), and shared-memory bus (tenso-bus) are published alongside it.

C / C++

Download the tenso-ffi-<platform>.tar.gz archive from the latest GitHub Release — it contains lib/ (shared + static) and include/ (tenso.h, tenso.hpp). No Rust toolchain required.

#include "tenso.h"

uintptr_t need = 0, written = 0;
tenso_dense_required_size(data, data_len, dtype_code, shape, ndim,
                          /*check_integrity=*/false, /*compress=*/false,
                          /*alignment=*/64, &need);
uint8_t *out = malloc(need);
tenso_encode_dense_into(data, data_len, dtype_code, shape, ndim,
                        false, false, 64, out, need, &written);

TensoView *v = tenso_decode(packet, packet_len);
const uint8_t *body = tenso_view_body_ptr(v);
tenso_view_free(v);

Quick Start

Basic Serialization

import numpy as np
import tenso

# Create tensor
data = np.random.rand(1024, 1024).astype(np.float32)

# Serialize
packet = tenso.dumps(data)

# Deserialize (Zero-copy view)
restored = tenso.loads(packet)

Async I/O

import asyncio
import tenso

async def handle_client(reader, writer):
    # Asynchronously read a tensor from the stream
    data = await tenso.aread_stream(reader)
    
    # Process and write back
    await tenso.awrite_stream(data * 2, writer)

FastAPI Integration

from fastapi import FastAPI
import numpy as np
from tenso.fastapi import TensoResponse

app = FastAPI()

@app.get("/tensor")
async def get_tensor():
    data = np.ones((1024, 1024), dtype=np.float32)
    return TensoResponse(data) # Zero-copy streaming response

Advanced Features

Ray Integration (Distributed Computing)

Replace pickle-based serialization in Ray with Tenso for 46x less CPU overhead on tensor operations. Works transparently with ray.put(), ray.get(), remote functions, and actors.

import ray
import numpy as np
from tenso.ray import register

ray.init()
register()  # Register Tenso as the serializer for numpy arrays

# All ray.put/get operations now use Tenso
ref = ray.put(np.zeros((1000, 1000)))
arr = ray.get(ref)  # Deserialized via Tenso

# Works transparently with remote functions
@ray.remote
def process(tensor):
    return tensor.mean()

ray.get(process.remote(np.random.randn(1000, 1000)))

Optional support for PyTorch and JAX tensors:

register(include_torch=True, include_jax=True)

Quantized Tensors (4-bit & 8-bit)

Native support for quantized representations to reduce memory footprint with minimal accuracy loss.

from tenso.quantize import QuantizedTensor
import numpy as np

data = np.random.randn(1024, 1024).astype(np.float32)

# Quantize to 8-bit (per-tensor scheme)
qt = QuantizedTensor.quantize(data, dtype="qint8", scheme="per_tensor")
print(qt)  # QuantizedTensor(dtype=qint8, shape=(1024, 1024), ...)

# Serialize/deserialize with Tenso
import tenso
packet = tenso.dumps(qt)
restored = tenso.loads(packet)

# Dequantize back to float32
result = restored.dequantize()

Supported dtypes: qint8, quint8, qint4, quint4 Supported schemes: per_tensor, per_channel, per_group

Inter-Process Communication (Shared Memory)

Transfer tensors between local processes with single-digit microsecond latency using Shared Memory. This avoids socket overhead entirely by passing memory handles.

from tenso import TensoShm
import numpy as np

# Process A: Write to Shared Memory
data = np.random.randn(1024, 1024).astype(np.float32)
# Automatically sizes and creates the SHM segment
with TensoShm.create_from("shared_tensor_01", data) as shm:
    print("Tensor is in SHM. Waiting for reader...")
    input() # Keep process alive

# Process B: Read from Shared Memory (Zero-Copy)
with TensoShm("shared_tensor_01") as shm:
    # Instant view of the data without copying
    array = shm.get()
    print(f"Received: {array.shape}")

GPU Acceleration (Direct Transfer)

Supports fast transfers between Tenso streams and device memory for CuPy, PyTorch, and JAX using pinned host memory.

import tenso.gpu as tgpu

# Read directly from a stream into a GPU tensor
torch_tensor = tgpu.read_to_device(stream, device_id=0)

bfloat16 Support

Native support for bfloat16 dtype, commonly used in ML training. Works with NumPy 2.1+ natively or falls back to ml_dtypes.

import numpy as np
import tenso

# Serialize bfloat16 tensors directly
data = np.ones((512, 512), dtype=np.float32)  # or bfloat16 if available
packet = tenso.dumps(data)

Sparse Formats & Bundling

Tenso natively supports complex data structures beyond simple dense arrays:

  • Sparse Matrices: Direct serialization for COO, CSR, and CSC formats.
  • Dictionary Bundling: Pack multiple tensors into a single nested dictionary packet.
  • LZ4 Compression: Optional high-speed compression for sparse or redundant data.

Data Integrity (XXH3)

Protect your tensors against network corruption with ultra-fast 64-bit checksums:

# Serialize with 64-bit checksum footer
packet = tenso.dumps(data, check_integrity=True)

# Verification is automatic during loads()
restored = tenso.loads(packet)

gRPC Integration

Tenso provides built-in support for gRPC, allowing you to pass tensors between services with minimal overhead.

from tenso.grpc import tenso_msg_pb2, tenso_msg_pb2_grpc
import tenso

# In your Servicer
def Predict(self, request, context):
    data = tenso.loads(request.tensor_packet)
    result = data * 2
    return tenso_msg_pb2.PredictResponse(
        result_packet=bytes(tenso.dumps(result))
    )

Protocol Design

Tenso uses a minimalist structure designed for direct memory access:

┌─────────────┬──────────────┬──────────────┬────────────────────────┬──────────────┐
│   HEADER    │    SHAPE     │   PADDING    │    BODY (Raw Data)     │    FOOTER    │
│   10 bytes  │  Variable    │   0-63 bytes │   C-Contiguous Array   │   8 bytes*   │
└─────────────┴──────────────┴──────────────┴────────────────────────┴──────────────┘
                                                                        (*Optional)

The v4 header is 10 bytes: magic (TNSO, 4) + version (1) + flags (u16, 2) + dtype (1) + ndim (1) + reserved (1). Tenso writes v4 packets and still reads legacy v3 packets (which use an 8-byte header with a 1-byte flags field), and the widened u16 flags field enables the StringTensor and RaggedArray formats.

The padding ensures the body starts at a 64-byte boundary, enabling AVX-512 vectorization and zero-copy memory mapping.


Use Cases

  • Model Serving APIs: Up to 35x faster deserialization with 46x less CPU saves massive overhead on inference nodes.
  • Distributed Training: Efficiently pass gradients or activations between nodes with native Ray integration.
  • GPU-Direct Pipelines: Stream data from network cards to GPU memory with minimal host intervention.
  • Real-time Robotics: 10.2 µs latency for high-frequency sensor fusion (LIDAR, Radar).
  • High-Throughput Streaming: 89K packets/sec network transmission for real-time data pipelines.

Contributing

Contributions are welcome! A C ABI (tenso-ffi, usable from C/C++) already ships; we are currently looking for help with:

  • More language clients: JavaScript/WASM, Go, and other ecosystems on top of the C ABI.
  • Rust ergonomics: a tenso umbrella crate exposing the device/cuda/bus features behind flags.

License

Apache License 2.0 - see LICENSE file.

Citation

@software{tenso2025,
  author = {Khushiyant},
  title = {Tenso: High-Performance Zero-Copy Tensor Protocol},
  year = {2025},
  url = {https://github.com/Khushiyant/tenso}
}

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

tenso-0.24.0.tar.gz (168.4 kB view details)

Uploaded Source

Built Distributions

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

tenso-0.24.0-cp311-abi3-win_amd64.whl (233.1 kB view details)

Uploaded CPython 3.11+Windows x86-64

tenso-0.24.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.7 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

tenso-0.24.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.8 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

tenso-0.24.0-cp311-abi3-macosx_11_0_arm64.whl (341.5 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

File details

Details for the file tenso-0.24.0.tar.gz.

File metadata

  • Download URL: tenso-0.24.0.tar.gz
  • Upload date:
  • Size: 168.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tenso-0.24.0.tar.gz
Algorithm Hash digest
SHA256 8beba8b39f6dff10f8e298c529208ebd8d7f906123bde91b0e3c68fbf9c6b577
MD5 c654a8b1bfe9639af583d0ff6cc4c191
BLAKE2b-256 cd06c3101df76f09fe0867e70a50d1906ff83317f4f9a2c4e35bbe136a3282b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tenso-0.24.0.tar.gz:

Publisher: release.yml on Khushiyant/tenso

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tenso-0.24.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: tenso-0.24.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 233.1 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tenso-0.24.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 1b7f07a96e790e7f0ac12f7443c0fce4a79b46e3c8ec06a8be1635240db663a9
MD5 672ac1cc6ba826cfcc4c03d89eb4837e
BLAKE2b-256 f2748f56fbecb8660aae46dcbc737a0f329ef712662a194280145e79db91e3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for tenso-0.24.0-cp311-abi3-win_amd64.whl:

Publisher: release.yml on Khushiyant/tenso

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tenso-0.24.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tenso-0.24.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c9dddfa1bf67b31c1ed182bbfcde3bdd2600f90ce7ce16b4bc286104bc652f2
MD5 b82feec97a1985fcd3ef5e0799d5cfdf
BLAKE2b-256 601ed548a1d904d3b55198f680ce6dd7f71e7fad60abed4e609417390e4c8b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for tenso-0.24.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Khushiyant/tenso

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tenso-0.24.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tenso-0.24.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc801644de469488697c8ef4c0f14bbff39e486177a4bf8935e0c05524c6a778
MD5 487a203b7a926a7bdb69f1f3d76ce204
BLAKE2b-256 9d3afb4001f281743a756d65339d571a204de052d5dfd68d2c059ee88299fa49

See more details on using hashes here.

Provenance

The following attestation bundles were made for tenso-0.24.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Khushiyant/tenso

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tenso-0.24.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tenso-0.24.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a347ef57958f3ff29e88934600e67234137ca1d1ed5b79650234b05c93ec33de
MD5 429a797c95ae2cda0ee067ee3b4ab4f3
BLAKE2b-256 ccde81de40de22584ace97f49a81aa69c3fa1a651b5829602f28a0300fa1c8a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tenso-0.24.0-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on Khushiyant/tenso

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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