EXPERIMENTAL: Python bindings for W3C WebNN API - Neural network graph validation, ONNX/CoreML conversion, and cross-platform execution with CPU/GPU/NPU support
Project description
rustnn / PyWebNN
A Rust implementation of WebNN graph handling with Python bindings that implement the W3C WebNN API specification.
[WARNING] EXPERIMENTAL - DO NOT USE IN PRODUCTION
This project is a proof-of-concept and experimental implementation. It is NOT ready for production use.
This is an early-stage experiment to explore WebNN graph handling and format conversion. Many features are incomplete, untested, or may change significantly. Use at your own risk for research and experimentation only.
Features:
- Rust Rust Library: Validates WebNN graphs and converts to ONNX/CoreML formats
- Python Python API: Complete W3C WebNN API implementation via PyO3 bindings
- [TARGET] Runtime Backend Selection: Choose CPU, GPU, or NPU execution at context creation
- [STATS] Format Conversion: Export graphs to ONNX (cross-platform) and CoreML (macOS)
- [DEPLOY] Model Execution: Run converted models on CPU, GPU, and Neural Engine (macOS)
- [FAST] Async Support: Non-blocking execution with Python asyncio integration
- [SEARCH] Graph Visualization: Generate Graphviz diagrams of your neural networks
- [OK] Validation: Comprehensive graph validation matching Chromium's WebNN implementation
- [MATH] Shape Inference: Automatic shape computation with NumPy-style broadcasting
- [STYLE] Real Examples: Complete 106-layer MobileNetV2 achieving 99.60% accuracy + Transformer text generation with attention
[PACKAGE] Installation
Python Package (PyWebNN)
Quick Start (Validation & Conversion Only):
pip install pywebnn
This installs the base package for graph validation and format conversion (no execution).
For Full Execution Support:
To execute neural networks, you need ONNX Runtime:
# Install PyWebNN + ONNX Runtime for CPU execution
pip install pywebnn onnxruntime
# Or for GPU execution (requires CUDA)
pip install pywebnn onnxruntime-gpu
Note: The PyPI package currently includes validation and conversion features. ONNX Runtime execution requires the onnxruntime package to be installed separately. We're working on better integration in future releases.
Build from Source (with Execution Built-in):
For a fully integrated package with execution support:
# Clone the repository
git clone https://github.com/tarekziade/rustnn.git
cd rustnn
# Install with ONNX Runtime support (recommended)
make python-dev # Sets up venv and builds with ONNX Runtime
# Or manually with maturin
pip install maturin
maturin develop --features python,onnx-runtime
# macOS only: Add CoreML support
maturin develop --features python,onnx-runtime,coreml-runtime
Requirements:
- Python 3.11+
- NumPy 1.20+
- ONNX Runtime 1.23+ (for execution)
Rust Library
Add to your Cargo.toml:
[dependencies]
rustnn = "0.1"
Or use directly from this repository.
[DEPLOY] Quick Start
Python API
import webnn
import numpy as np
# Create ML context - use hints for device selection
ml = webnn.ML()
context = ml.create_context(accelerated=False) # CPU-only execution
# Or: context = ml.create_context(accelerated=True) # Request GPU/NPU if available
# Create graph builder
builder = context.create_graph_builder()
# Define a simple graph: z = relu(x + y)
x = builder.input("x", [2, 3], "float32")
y = builder.input("y", [2, 3], "float32")
z = builder.add(x, y)
output = builder.relu(z)
# Compile the graph (creates backend-agnostic representation)
graph = builder.build({"output": output})
# Prepare input data
x_data = np.array([[1, -2, 3], [4, -5, 6]], dtype=np.float32)
y_data = np.array([[-1, 2, -3], [-4, 5, -6]], dtype=np.float32)
# Execute: converts to backend-specific format and runs
results = context.compute(graph, {"x": x_data, "y": y_data})
print(results["output"]) # Actual computed values from ONNX Runtime
# Optional: Export the ONNX model to file (for deployment, inspection, etc.)
context.convert_to_onnx(graph, "model.onnx")
Backend Selection
Following the W3C WebNN Device Selection spec, device selection uses hints rather than explicit device types:
# Request GPU/NPU acceleration (default)
context = ml.create_context(accelerated=True, power_preference="default")
print(f"Accelerated: {context.accelerated}") # Check if acceleration is available
# Request low-power execution (prefers NPU over GPU)
context = ml.create_context(accelerated=True, power_preference="low-power")
# Request high-performance execution (prefers GPU)
context = ml.create_context(accelerated=True, power_preference="high-performance")
# CPU-only execution (no acceleration)
context = ml.create_context(accelerated=False)
Device Selection Logic:
accelerated=True+power_preference="low-power"→ NPU > GPU > CPUaccelerated=True+power_preference="high-performance"→ GPU > NPU > CPUaccelerated=True+power_preference="default"→ GPU > NPU > CPUaccelerated=False→ CPU only
Platform-Specific Backends:
- NPU: CoreML Neural Engine (Apple Silicon macOS only)
- GPU: ONNX Runtime GPU (cross-platform) or CoreML GPU (macOS)
- CPU: ONNX Runtime CPU (cross-platform)
Important: The accelerated property indicates platform capability, not a guarantee. Query context.accelerated after creation to check if GPU/NPU resources are available. The platform controls actual device allocation based on runtime conditions.
The graph compilation (builder.build()) creates a backend-agnostic representation. Backend-specific conversion happens automatically during compute() based on the context's selected backend.
Async Execution
WebNN supports asynchronous execution following the W3C specification. Use AsyncMLContext for non-blocking operations:
import asyncio
import numpy as np
import webnn
async def main():
# Create context
ml = webnn.ML()
context = ml.create_context(accelerated=False)
async_context = webnn.AsyncMLContext(context)
# Build graph
builder = async_context.create_graph_builder()
x = builder.input("x", [2, 3], "float32")
y = builder.input("y", [2, 3], "float32")
z = builder.add(x, y)
output = builder.relu(z)
graph = builder.build({"output": output})
# Async dispatch (non-blocking execution)
x_data = np.array([[1, -2, 3], [4, -5, 6]], dtype=np.float32)
y_data = np.array([[-1, 2, -3], [-4, 5, -6]], dtype=np.float32)
await async_context.dispatch(graph, {"x": x_data, "y": y_data})
print("Graph executed asynchronously!")
asyncio.run(main())
Rust Library
use rustnn::{GraphInfo, GraphValidator, ContextProperties};
use rustnn::converters::{ConverterRegistry, OnnxConverter};
// Load graph from JSON
let graph_info: GraphInfo = serde_json::from_str(&json_data)?;
// Validate the graph
let validator = GraphValidator::new(&graph_info, ContextProperties::default());
let artifacts = validator.validate()?;
// Convert to ONNX
let mut registry = ConverterRegistry::new();
registry.register(Box::new(OnnxConverter));
let converted = registry.convert("onnx", &graph_info)?;
// Save to file
std::fs::write("model.onnx", &converted.data)?;
// Execute with ONNX Runtime (requires "onnx-runtime" feature)
#[cfg(feature = "onnx-runtime")]
{
use rustnn::executors::onnx::run_onnx_zeroed;
// Execute model with zeroed inputs
run_onnx_zeroed(&converted.data)?;
println!("Model executed successfully with ONNX Runtime");
}
// Execute with CoreML (requires "coreml-runtime" feature, macOS only)
#[cfg(all(target_os = "macos", feature = "coreml-runtime"))]
{
use rustnn::executors::coreml::run_coreml_zeroed_cached;
use rustnn::converters::CoremlMlProgramConverter;
// Convert to CoreML MLProgram
registry.register(Box::new(CoremlMlProgramConverter::default()));
let coreml = registry.convert("coreml", &graph_info)?;
// Execute on GPU (0=CPU, 1=GPU, 2=Neural Engine)
run_coreml_zeroed_cached(&coreml.data, 1)?;
println!("Model executed successfully with CoreML");
}
[STYLE] Examples
Real Image Classification with Complete Pretrained MobileNetV2
The examples/mobilenetv2_complete.py demonstrates real image classification using the complete 106-layer pretrained MobileNetV2 from the WebNN test-data repository:
# Download all 106 pretrained weight files (first time only)
bash scripts/download_mobilenet_weights.sh
# Run with CPU backend
python examples/mobilenetv2_complete.py examples/images/test.jpg --backend cpu
# Run with GPU backend
python examples/mobilenetv2_complete.py examples/images/test.jpg --backend gpu
# Run with CoreML backend (macOS only - fastest!)
python examples/mobilenetv2_complete.py examples/images/test.jpg --backend coreml
Sample Output (classifying a red panda):
======================================================================
Complete MobileNetV2 Image Classification with WebNN
======================================================================
Image: examples/images/test.jpg
Backend: ONNX CPU
Loading all pretrained MobileNetV2 weights...
[OK] Loaded 106 weight tensors
Weight load time: 22.79ms
Building complete MobileNetV2 graph...
Layer 0: Initial conv 3->32
Block 0: 32->16 (stride=1, expansion=1)
Block 1: 16->24 (stride=2, expansion=6)
...
Block 16: 160->320 (stride=1, expansion=6)
Layer final: Conv 320->1280
[OK] Complete MobileNetV2 graph built!
Graph build time: 913.78ms
Top 5 Predictions (Real ImageNet Labels):
----------------------------------------------------------------------
1. lesser panda 99.60%
2. polecat 0.20%
3. weasel 0.09%
4. black-footed ferret 0.02%
5. kit fox 0.01%
Performance Summary:
- Weight Load: 22.79ms
- Preprocessing: 15.52ms
- Graph Build: 913.78ms
- Inference: 74.41ms (CPU) / 77.14ms (GPU) / 51.93ms (CoreML)
======================================================================
How It Works:
- Complete 106-layer architecture - All pretrained weights from WebNN test-data
- 17 inverted residual blocks - Full MobileNetV2 architecture
- Built with WebNN operations - Uses conv2d, add, clamp, global_average_pool, gemm, softmax
- Real ImageNet-1000 labels - Accurate real-world predictions
- Three backend support - ONNX CPU, ONNX GPU, CoreML (Neural Engine on Apple Silicon)
- Production-quality accuracy - 99.60% confidence on correct class
Architecture Details:
- Initial conv: 3→32 channels (stride 2)
- 17 inverted residual blocks with varying expansions (1x or 6x)
- Depthwise separable convolutions using groups parameter
- Residual connections for stride=1 blocks
- ReLU6 activations (clamp 0-6)
- Final conv: 320→1280 channels
- Global average pooling + classifier (1280→1000)
This implementation exactly matches the JavaScript WebNN demos, building the complete graph layer-by-layer using WebNN API operations.
Text Generation with Transformer Attention
The examples/text_generation_gpt.py demonstrates next-token generation using a simplified transformer with attention, similar to the JavaScript WebNN text generation demo:
# Run basic generation on all 3 backends
make text-gen-demo
# Or run on a specific backend
python examples/text_generation_gpt.py --prompt "Hello world" --tokens 30 --backend cpu
python examples/text_generation_gpt.py --prompt "Hello world" --tokens 30 --backend gpu
python examples/text_generation_gpt.py --prompt "Hello world" --tokens 30 --backend coreml
# Train the model on sample data
make text-gen-train
# Generate with trained weights
make text-gen-trained
# Run enhanced version with KV cache
make text-gen-enhanced
Sample Output:
======================================================================
Next-Token Generation with Attention (WebNN)
======================================================================
Backend: ONNX CPU
Model: vocab=256 (byte-level), d_model=64, max_seq=32
[OK] Context created (accelerated=False)
[OK] Model initialized
Prompt: 'Hello world'
Prompt tokens (11): [72, 101, 108, 108, 111, 32, 119, 111, 114, 108]...
Generating 30 tokens autoregressively...
======================================================================
Token 1/30: 87 (prob: 0.0042)
Token 10/30: 123 (prob: 0.0043)
Token 20/30: 136 (prob: 0.0037)
Token 30/30: 99 (prob: 0.0040)
======================================================================
WebNN Operations Demonstrated:
[OK] matmul - Matrix multiplication for projections
[OK] layer_normalization - Normalizing activations
[OK] relu - Activation function
[OK] softmax - Output probability distribution
[OK] reduce_mean - Simplified attention pooling
[OK] gemm - General matrix multiply with transpose
======================================================================
How It Works:
- Transformer architecture - Single-head attention, layer normalization, feed-forward networks
- Autoregressive generation - Generates one token at a time based on context
- Positional embeddings - Sinusoidal position encodings
- Temperature sampling - Configurable randomness in token selection
- Training support - Train on custom text with
train_text_model.py - KV caching - Enhanced version with efficient key-value caching
- Three backend support - ONNX CPU, ONNX GPU, CoreML (Neural Engine on Apple Silicon)
Complete Workflow:
# 1. Train on sample data (10 epochs, ~1-2 minutes)
make text-gen-train
# 2. Generate with trained weights (better quality)
make text-gen-trained
# 3. Or use enhanced version with KV cache
make text-gen-enhanced
The training script (examples/train_text_model.py) uses simple gradient descent to train on text data, and the enhanced version (examples/text_generation_enhanced.py) includes KV caching for efficient generation and HuggingFace tokenizer support.
Additional Examples
examples/python_simple.py- Basic graph building and executionexamples/python_matmul.py- Matrix multiplication operationsexamples/image_classification.py- Full classification pipeline (random weights)
See the examples/ directory for more code samples.
Documentation
The Python API implements the W3C WebNN specification.
Quick Links:
- API Reference - Complete Python API documentation
- Getting Started - Installation and first steps
- Architecture - Design principles and structure
- Examples - Working code samples
Rust Rust CLI Usage
The Rust library includes a powerful CLI tool for working with WebNN graphs.
Validate a Graph
cargo run -- examples/sample_graph.json
Visualize a Graph
# Generate DOT file
cargo run -- examples/sample_graph.json --export-dot graph.dot
# Convert to PNG (requires graphviz)
dot -Tpng graph.dot -o graph.png
# Or use the Makefile shortcut (macOS)
make viz
Convert to ONNX
cargo run -- examples/sample_graph.json \
--convert onnx \
--convert-output model.onnx
Convert to CoreML
cargo run -- examples/sample_graph.json \
--convert coreml \
--convert-output model.mlmodel
Execute Models
ONNX Runtime (cross-platform):
cargo run --features onnx-runtime -- \
examples/sample_graph.json \
--convert onnx \
--run-onnx
CoreML Runtime (macOS only):
cargo run --features coreml-runtime -- \
examples/sample_graph.json \
--convert coreml \
--run-coreml \
--device gpu # or 'cpu', 'ane' for Neural Engine
Makefile Targets
make help # Show all available targets
make build # Build Rust project
make test # Run Rust tests
make python-dev # Install Python package in dev mode
make python-test # Run Python tests
make docs-serve # Serve documentation locally
make validate-all-env # Run full test pipeline
Architecture
Design Principles:
- Backend-Agnostic Graphs - Platform-independent representation, runtime backend selection
- WebNN Spec Compliance - Implements W3C Device Selection and MLTensor specs
- Rust-First - Pure Rust core with thin Python bindings
- Lazy Conversion - Backend conversion happens during execution, not compilation
See Architecture Guide for details.
Development
# Clone and build
git clone https://github.com/tarekziade/rustnn.git
cd rustnn
cargo build --release
maturin develop --features python
# Run tests
cargo test && python -m pytest tests/
See Development Guide for detailed instructions.
🧪 Testing
Python Tests
# Install test dependencies
pip install -e ".[dev]"
# Run all tests
pytest tests/ -v
# Run specific test file
pytest tests/test_python_api.py -v
# Run integration tests with cleanup
python tests/test_integration.py --cleanup
Rust Tests
# All tests
cargo test
# Specific module
cargo test converters
# With features
cargo test --features onnx-runtime,coreml-runtime
Project Status
[SUCCESS] 85 WebNN operations fully implemented across all backends!
- [OK] W3C WebNN API implementation in Python
- [OK] Runtime backend selection (CPU, GPU, Neural Engine)
- [OK] 85/95 WebNN operations (89% spec coverage)
- [OK] ONNX Runtime execution (cross-platform)
- [OK] CoreML execution (macOS GPU/Neural Engine)
- [OK] Async execution with MLTensor management
- [OK] Shape inference with NumPy-style broadcasting
- [OK] Complete MobileNetV2 + Transformer examples
See docs/operator-status.md for complete implementation details.
🤝 Contributing
Contributions are welcome! Please see:
- AGENTS.md - Project architecture and conventions for AI agents
- TODO.txt - Feature requests and known limitations
Quick Contribution Guide
- Fork the repository
- Create a feature branch:
git checkout -b feature/my-feature - Install git hooks (optional but recommended):
./scripts/install-git-hooks.sh
This installs a pre-commit hook that automatically checks code formatting before each commit. - Make your changes
- Run tests:
cargo test && pytest tests/ - Format code:
cargo fmt(or let the pre-commit hook handle it) - Commit:
git commit -m "Add my feature" - Push and create a pull request
Note: The pre-commit hook will prevent commits with unformatted code. If needed, you can bypass it with git commit --no-verify, but this is not recommended.
License
Licensed under the Apache License, Version 2.0. See LICENSE for details.
Links
- GitHub: https://github.com/tarekziade/rustnn
- PyPI: https://pypi.org/project/pywebnn/
- Documentation: https://tarekziade.github.io/rustnn/
- W3C WebNN Spec: https://www.w3.org/TR/webnn/
- Issues: https://github.com/tarekziade/rustnn/issues
Acknowledgments
- W3C WebNN Community Group for the specification
- Chromium WebNN implementation for reference
- PyO3 project for excellent Python-Rust bindings
- Maturin for seamless Python package building
Made with by Tarek Ziade
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 Distributions
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 pywebnn-0.3.0.tar.gz.
File metadata
- Download URL: pywebnn-0.3.0.tar.gz
- Upload date:
- Size: 14.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c36511514659e28a8d3c9b5d7c1a181187498c04e0f15f772ce8c6823e6295bc
|
|
| MD5 |
75925b0506286078ef6ff6a3bb394f7d
|
|
| BLAKE2b-256 |
4b3ab4681648273666023e5398a494508476315c6ac67d97576e1d7d8eecc1e2
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0.tar.gz:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0.tar.gz -
Subject digest:
c36511514659e28a8d3c9b5d7c1a181187498c04e0f15f772ce8c6823e6295bc - Sigstore transparency entry: 763952151
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pywebnn-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pywebnn-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 465.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f484463f56c14b88c4e908f4d0e6ca3b1077c47e73bcf7451eb130905e6239b
|
|
| MD5 |
d1b1e628461deff3fc82bb83818ee454
|
|
| BLAKE2b-256 |
07b469716c93d36e4b8c6eb288f15b0ea735d14e407854e3cce1e609e1704767
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
9f484463f56c14b88c4e908f4d0e6ca3b1077c47e73bcf7451eb130905e6239b - Sigstore transparency entry: 763952152
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pywebnn-0.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: pywebnn-0.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 427.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca22d637666a16653578c3bb0c1357e50f6ec52fdb5a0ed7c05d17285cad7c3a
|
|
| MD5 |
d9b8d57e464f21b8aa01038b4cecc23f
|
|
| BLAKE2b-256 |
c80eea322b37139b680013d91938350519d092e7c86501e8484490a10d1c450b
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0-cp312-cp312-win32.whl:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0-cp312-cp312-win32.whl -
Subject digest:
ca22d637666a16653578c3bb0c1357e50f6ec52fdb5a0ed7c05d17285cad7c3a - Sigstore transparency entry: 763952153
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pywebnn-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pywebnn-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 589.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4ea3bdd3cb7b259768d2712f4264fdb90c9242e8abca837fda20246e2d296b1
|
|
| MD5 |
3a34ecab5d628472ef1feb779ee372cb
|
|
| BLAKE2b-256 |
b21bb30481c2a4553d87de017b1e240a0bd854f867d0e9794b904f4ce84792b0
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
f4ea3bdd3cb7b259768d2712f4264fdb90c9242e8abca837fda20246e2d296b1 - Sigstore transparency entry: 763952159
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pywebnn-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pywebnn-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 574.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e3d28ceb78cd08ab904b34eeca2dbced0f62b5e3c8e3677839c77cd645ea084
|
|
| MD5 |
ad353a327d62775034ce1489596b8973
|
|
| BLAKE2b-256 |
a5e83980897f6dd8f3863a63271e22b3498df446bffa0b3df530db5c19b89454
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
6e3d28ceb78cd08ab904b34eeca2dbced0f62b5e3c8e3677839c77cd645ea084 - Sigstore transparency entry: 763952155
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pywebnn-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pywebnn-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 743.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20e7ba269cb1d3d52a48aad6169aa61d912fd9ee1a0d3366dafa55f023687592
|
|
| MD5 |
bad4782a5d5d2c06ce7817933e9e8483
|
|
| BLAKE2b-256 |
413474d2c280127b4df57e023880ca2af2ce277f48088722c789628650d6b9d3
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
20e7ba269cb1d3d52a48aad6169aa61d912fd9ee1a0d3366dafa55f023687592 - Sigstore transparency entry: 763952158
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file pywebnn-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pywebnn-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 765.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f1f380d9b10863872635dab24bc8722af5e550dc8452f943220a62c34df68d1
|
|
| MD5 |
f0a5cec60e00e8325b7205d5c0d98b65
|
|
| BLAKE2b-256 |
c8aa6c94c2958b985302de5902f7d5911753e4e7911e10e855242e20b382beff
|
Provenance
The following attestation bundles were made for pywebnn-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish-pypi.yml on tarekziade/rustnn
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pywebnn-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
8f1f380d9b10863872635dab24bc8722af5e550dc8452f943220a62c34df68d1 - Sigstore transparency entry: 763952156
- Sigstore integration time:
-
Permalink:
tarekziade/rustnn@344d91421d81d83ed02af353513682328efc2957 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/tarekziade
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@344d91421d81d83ed02af353513682328efc2957 -
Trigger Event:
workflow_dispatch
-
Statement type: