mirror of
https://github.com/tracel-ai/burn.git
synced 2026-05-31 19:49:48 +09:00
* Move ONNX import into burn-onnx crate * Update publish * Update burn-import -> burn-onnx * Fix clippy warnings that are no longer allowed * Allow unused * Update contributor book references to burn-onnx Update all burn-import path references in the ONNX development guide to point to the new burn-onnx crate location. * Remove ONNX integration steps from burn op guide Deleted the section detailing how to add a new operation to burn-onnx, including ONNX IR and code generation mapping steps. This streamlines the guide and removes outdated or redundant ONNX-specific instructions. * Update onnx-ir references from burn-import to burn-onnx Update documentation and code comments to reference the new burn-onnx crate instead of burn-import. * Update ONNX test producer name to burn-onnx-test Update producer_name metadata in Python test scripts from "burn-import-test" to "burn-onnx-test" for consistency. * Undo ONNX file changes
27 lines
485 B
TOML
27 lines
485 B
TOML
[package]
|
|
name = "burn-onnx-model-checks-clip-vit-b-32-vision"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[workspace]
|
|
|
|
[features]
|
|
default = ["tch"]
|
|
ndarray = []
|
|
tch = []
|
|
wgpu = []
|
|
metal = []
|
|
|
|
[dependencies]
|
|
burn = { path = "../../../../crates/burn", features = [
|
|
"ndarray",
|
|
"tch",
|
|
"wgpu",
|
|
"metal",
|
|
] }
|
|
burn-store = { path = "../../../../crates/burn-store", features = ["burnpack", "pytorch"] }
|
|
|
|
[build-dependencies]
|
|
burn-onnx = { path = "../../../burn-onnx" }
|