Skip to main content

pyshmem

PyPI Python CI Documentation License: GPL v3

pyshmem is a Python library for low-latency, cross-process exchange of fixed shape NumPy arrays and CUDA-backed PyTorch tensors. CPU and GPU streams share the same small create / open / write / read API.

A pyshmem stream is a capacity-one latest-value exchange, not a queue. Each write replaces the previous payload; readers get a consistent snapshot and can inspect missed-publication counters when producers run faster than consumers. It supports Linux and macOS; CUDA IPC is Linux-only. Windows is unsupported.

Documentation · API reference · Source · Issues · Changelog

Quick start

Create and publish from one process:

import numpy as np
import pyshmem

writer = pyshmem.create("frames", shape=(480, 640), dtype=np.float32)
with writer.write_view() as frame:
    frame[...] = 1.0                 # zero-copy, exception-safe publish

Attach and read from another:

import pyshmem

reader = pyshmem.open("frames")
frame = reader.read()                    # latest consistent snapshot
next_frame = reader.read_new(timeout=1) # wait for the next publication
next_frame = reader.read_after(reader.last_read_count, timeout=1)
print(reader.missed_writes)

reader.close()

Use the same API for CUDA by creating with gpu_device="cuda:0"; reads return a CUDA torch.Tensor when attached to the GPU. Destroy persistent streams with writer.unlink() when they are no longer needed.

See the quick start, usage guide, and GPU guide for lifecycle, locking, asyncio, CPU mirrors, failure recovery, and CLI examples.

Installation

CPU support:

pip install pyshmem

CUDA support (installs the PyTorch dependency):

pip install "pyshmem[gpu]"

See the installation guide for supported Python versions, platform requirements, development setup, and installation verification.

Performance

The repository includes both single-process microbenchmarks and a calibrated, spawned-process request/acknowledgement benchmark with an unsafe raw shared memory lower-bound comparison.

On the primary Linux development machine (Python 3.12, NumPy 2.2.6, PyTorch 2.10, RTX 5090), the spawned-process 64 KiB benchmark measured:

Implementation Round trips/s p50 p95 p99
pyshmem (CPU) 13,988 60.26 µs 111.69 µs 115.70 µs
pyshmem (GPU IPC) 4,872 189.25 µs 239.00 µs 240.98 µs
Raw shared memory polling 16,492 57.58 µs 104.45 µs 108.95 µs

The raw baseline omits pyshmem's locking, metadata validation, discovery, and consistent snapshots. The GPU row is a separate spawned process mapping the producer's CUDA tensor over torch IPC and reading a consistent device snapshot each round trip. Results are machine-specific; run the harness on the target deployment host (add --gpu for the CUDA baseline):

python benchmarks/benchmark_ipc.py \
  --payload-bytes 65536 --minimum-seconds 1 --repeats 5 --gpu

See the benchmark documentation and the versioned result for methodology, CPU/GPU measurements, and limitations.

License and contact

pyshmem is licensed under GPL-3.0-only. Applications that distribute pyshmem or derivative work should evaluate the GPL's obligations.

Use GitHub issues for bugs and feature requests. See CONTRIBUTING.md for development, SUPPORT.md for compatibility and support scope, and SECURITY.md for private vulnerability reporting.

Download files

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

Source Distribution

pyshmem-1.1.1.tar.gz (73.8 kB view details)

Uploaded Source

Built Distribution

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

pyshmem-1.1.1-py3-none-any.whl (46.3 kB view details)

Uploaded Python 3

File details

Details for the file pyshmem-1.1.1.tar.gz.

File metadata

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

File hashes

Hashes for pyshmem-1.1.1.tar.gz
Algorithm Hash digest
SHA256 15adcbba145c33238c3f9c43be204808208abdae6d7af0dad959ade754686e7f
MD5 63d43907f5402c4483e407fa88f83523
BLAKE2b-256 3c9efff15da38ca0d8fb73d5771dab1f68274bd2ef32b147df7fc72c56d7ffae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyshmem-1.1.1.tar.gz:

Publisher: pypi.yml on jacotay7/pyshmem

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

File details

Details for the file pyshmem-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: pyshmem-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 46.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyshmem-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 129eac0e533505816f6f227c5ea059bc9cdf59d1c5448f1e6e3f0b1c202308a4
MD5 bbea21de66c599841f81f3573fda65c2
BLAKE2b-256 a458ff30ded4f665c03940852d182210f3707ca146a4620c72d9f7961a5d2fb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyshmem-1.1.1-py3-none-any.whl:

Publisher: pypi.yml on jacotay7/pyshmem

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 Sentry Error logging StatusPage Status page