A fast zero-copy PyTorch tensor streamer
Project description
Vajra
A fast zero-copy PyTorch tensor streamer powered by Dlang.
Usage
Once installed, you can use Vajra in any Python script or Jupyter Notebook:
import torch
from vajra import VajraStreamer, StreamConfig
# Configure the streamer (optional, uses defaults otherwise)
config = StreamConfig(
auth_token="hf_YOUR_TOKEN", # Required for gated models like Llama 3
chunk_size_mb=64,
chunk_workers=16,
gpu_workers=3,
disable_cache=False
)
# Context manager ensures VRAM is freed when done
with VajraStreamer(config) as streamer:
# Pass the URL or a Hugging Face repo ID
# (e.g. "meta-llama/Meta-Llama-3-8B")
tensors = streamer.load("meta-llama/Meta-Llama-3-8B")
# 'tensors' is a dictionary mapping tensor names to zero-copy PyTorch tensors
# that are backed directly by the downloaded GPU memory.
for name, tensor in tensors.items():
print(f"Tensor: {name}, Shape: {tensor.shape}, Dtype: {tensor.dtype}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vajra_streamer-0.0.46a7.tar.gz.
File metadata
- Download URL: vajra_streamer-0.0.46a7.tar.gz
- Upload date:
- Size: 3.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c091f7483f52005e495e097a444f0cb5db06309cea6f01af0b70b1270a68f747
|
|
| MD5 |
f70e049160323548b2f3305b8d597c7b
|
|
| BLAKE2b-256 |
ef0e9477b3a60ba9f5061bac3655615f601db105763480232c101e88c04a832a
|
File details
Details for the file vajra_streamer-0.0.46a7-py3-none-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: vajra_streamer-0.0.46a7-py3-none-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 8.0 MB
- Tags: Python 3, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b37a90f4fa72f2d1ffe7c525bdadfac4a80a079757577a3488b1c7ec869c838f
|
|
| MD5 |
c7352a349397988a7a3f5824769d2f4f
|
|
| BLAKE2b-256 |
6a84c4de87d9cd83c47469397ab2bea5964fd8e604e74430c5075332b16351b3
|