wonnx icon indicating copy to clipboard operation
wonnx copied to clipboard

A WebGPU-accelerated ONNX inference run-time written 100% in Rust, ready for native and the web

Results 50 wonnx issues
Sort by recently updated
recently updated
newest added

Currently the Onnx [Slice](https://onnx.ai/onnx/operators/onnx__Slice.html#slice) operator is not implemented. I have just started looking at the WGSL code and may be able to work this out slowly but wanted to know...

Revert https://github.com/webonnx/wonnx/commit/aabd3d4dfa9e2c21807a746d16f8fd6b11e01b9e when `sign(x)` is fixed on Windows (check: `test_sign` should pass).

**Is your feature request related to a problem? Please describe.** When there are consecutive mapping operations (Neg, Relu, etc.) we should not execute these serially each in their own shader...

performance

Hey! I discovered the project [pyannote-onnx](https://github.com/pengzhendong/pyannote-onnx) and was wondering if I could implement something similar using ort in Rust. Could you provide an example if it's possible, or share more...

**Describe the bug** `IrError(OutputNodeNotFound("/Cast_output_0"))` **To Reproduce** Steps to reproduce the behavior: Using onnx-clip model which you can grab at https://lakera-clip.s3.eu-west-1.amazonaws.com/clip_image_model_vitb32.onnx (about 336 MiB) 1. `python -m onnxruntime.tools.make_dynamic_shape_fixed --dim_param image_batch_size --dim_value...

**Is your feature request related to a problem? Please describe.** I'd like to use dynamic batch sizes to actually batch properly. **Describe the solution you'd like** Dynamic dimension support **Describe...

**Describe the bug** `Error: Could not infer shapes: unsupported: Reshape with shape containing a -1 element` **To Reproduce** Using onnx-clip model which you can grab at `https://lakera-clip.s3.eu-west-1.amazonaws.com/clip_image_model_vitb32.onnx` (about 336 MiB)...

**Is your feature request related to a problem? Please describe.** I am currently trying to run [segment anything](https://github.com/facebookresearch/segment-anything) in the browser in a rust binary that is targeting wasm. I...

**Describe the bug** We're having some issues trying to execute YOLOv5 model. After some days of debugging it looks like Split operation works incorrectly when trying to split 1x3x8x13x11 into...

This is my first contribution to wonnx. I implemented the Slice operator and fixed the Concat operator. Additionally, I implemented the yolox_nano sample. The Slice operator only supports cases where...