gitextract_ogh8afab/ ├── .cargo/ │ ├── audit.toml │ └── config.toml ├── .github/ │ └── workflows/ │ ├── integration_tests.yml │ └── publish.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── crates/ │ └── dsperse/ │ ├── Cargo.toml │ ├── benches/ │ │ └── serialization.rs │ ├── build.rs │ ├── proto/ │ │ └── onnx.proto │ ├── src/ │ │ ├── backend/ │ │ │ ├── jstprove.rs │ │ │ ├── mod.rs │ │ │ ├── onnx.rs │ │ │ └── traits.rs │ │ ├── cli/ │ │ │ └── mod.rs │ │ ├── converter.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── pipeline/ │ │ │ ├── channel_split.rs │ │ │ ├── combined.rs │ │ │ ├── compiler.rs │ │ │ ├── dim_split.rs │ │ │ ├── incremental.rs │ │ │ ├── mod.rs │ │ │ ├── packager.rs │ │ │ ├── prover.rs │ │ │ ├── publisher.rs │ │ │ ├── runner.rs │ │ │ ├── slice_cache.rs │ │ │ ├── stage.rs │ │ │ ├── strategy.rs │ │ │ ├── tensor_store.rs │ │ │ ├── tile_executor.rs │ │ │ ├── tiled.rs │ │ │ └── verifier.rs │ │ ├── python.rs │ │ ├── schema/ │ │ │ ├── execution.rs │ │ │ ├── metadata.rs │ │ │ ├── mod.rs │ │ │ └── tiling.rs │ │ ├── slicer/ │ │ │ ├── analyzer.rs │ │ │ ├── autotiler.rs │ │ │ ├── combiner.rs │ │ │ ├── layernorm_fuse.rs │ │ │ ├── materializer.rs │ │ │ ├── mod.rs │ │ │ ├── onnx_fold.rs │ │ │ ├── onnx_proto.rs │ │ │ ├── onnx_shapes.rs │ │ │ ├── onnx_slicer.rs │ │ │ ├── self_div_rewrite.rs │ │ │ └── trace.rs │ │ ├── utils/ │ │ │ ├── io.rs │ │ │ ├── limits.rs │ │ │ ├── metadata.rs │ │ │ ├── mod.rs │ │ │ └── paths.rs │ │ └── version.rs │ └── tests/ │ ├── integration_slice.rs │ ├── schema_roundtrip.rs │ └── sn2_contract.rs ├── deny.toml ├── docs/ │ ├── JSTPROVE_BACKEND.md │ ├── overview.md │ └── uv_packaging.md ├── pyproject.toml ├── python/ │ └── dsperse/ │ ├── __init__.py │ └── cli.py └── rust-toolchain.toml