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
23 lines
516 B
TOML
23 lines
516 B
TOML
[package]
|
|
name = "onnx-tests"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = ["test-ndarray"]
|
|
test-wgpu = ["burn/wgpu"]
|
|
test-ndarray = ["burn/ndarray"]
|
|
test-tch = ["burn/tch"]
|
|
test-metal = ["burn/metal"]
|
|
test-candle = ["burn/candle"]
|
|
|
|
[dev-dependencies]
|
|
burn = { path = "../../burn" }
|
|
burn-store = { path = "../../burn-store", features = ["burnpack"] }
|
|
serde = { workspace = true }
|
|
float-cmp = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
burn-onnx = { path = "../" }
|