PyTorch-compatible API that runs in the browser — via Pyodide + WebGPU.
Project description
torch-pyodide
PyTorch-compatible API that runs entirely in the browser.
Built on Pyodide and WebGPU, torch-pyodide lets you write PyTorch code that executes on the GPU inside the browser — no server, no CUDA, no installation beyond pip install torch-pyodide.
What works
- Tensor creation:
tensor(),zeros,ones,rand,randn,arange,full,empty - Arithmetic:
add,sub,mul,div,pow,matmul,mm,mv,bmm - Linear algebra:
dot,outer,norm(Frobenius, L1, L2, inf) - Unary ops:
relu,sigmoid,tanh,gelu,silu,sqrt,exp,log,sin,cos, and 40+ more - Comparison:
eq,ne,gt,lt,ge,le - Reductions:
sum,mean,max,min,prod,any,all,cumsum,cumprod - Shape ops:
reshape,flatten,squeeze,unsqueeze,transpose,permute,cat,stack,expand - Indexing:
select,slice,index_select,masked_select,masked_fill,where - Neural network (
torch.nn):Linear,Bilinear,Conv2d,BatchNorm1d/2d,LayerNorm,Dropout, pooling, loss functions, activations - CUDA stub:
torch.cuda.is_available(),torch.cuda.device_count(), etc.
Quick start
import torch
x = torch.randn((3, 4))
w = torch.randn((4, 5))
y = x.matmul(w)
print(y.shape) # (3, 5)
# Neural networks
model = torch.nn.Sequential(
torch.nn.Linear(4, 16),
torch.nn.ReLU(),
torch.nn.Linear(16, 2),
)
logits = model(x)
License
MIT
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 torch_pyodide-0.0.4.tar.gz.
File metadata
- Download URL: torch_pyodide-0.0.4.tar.gz
- Upload date:
- Size: 24.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51297f666e7ab2edb5cc842c3df27d234c3713e5940bc622a006609ff103c242
|
|
| MD5 |
494cf9d48633d101157a1fe7d8ceac53
|
|
| BLAKE2b-256 |
2336fd9824979b9941056fbabe9c6e72ee854b7714e30d5dddcfbe001ef6b0ea
|
File details
Details for the file torch_pyodide-0.0.4-py3-none-any.whl.
File metadata
- Download URL: torch_pyodide-0.0.4-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7129a895b63ae1786f4f480c5a411dd10d22b531151e49b3fbcb920a299ed09b
|
|
| MD5 |
6402c5e72210ed61c607269173cf6476
|
|
| BLAKE2b-256 |
ce85538191ca7f74691457fb2191303d30c03bdfe98fa84f339480c60040e09f
|