Skip to content

Commit f632227

Browse files
fix(burn): point to AdaWorldAPI/burn, exclude from workspace resolver
- Replace tracel-ai/burn git refs with AdaWorldAPI/burn@9b2b671 - Update submodule URL to AdaWorldAPI/burn - Exclude crates/burn from workspace (rand 0.10 vs 0.9 conflict) Burn is built standalone via `cargo check -p burn --manifest-path crates/burn/Cargo.toml` Co-authored-by: AdaWorldAPI <AdaWorldAPI@users.noreply.github.com>
1 parent ed59b3b commit f632227

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ members = [
144144
"ndarray-rand",
145145
"crates/*",
146146
]
147-
exclude = []
147+
exclude = ["crates/burn"]
148148
default-members = [
149149
".",
150150
"ndarray-rand",

crates/burn/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export_tests = []
4040
# Upstream burn crates — vendored at pinned commit, we only override our additions.
4141
# Our changes: crates/burn/src/ops/tensor.rs (try_vml_unary + 4 SIMD wires)
4242
# crates/burn/src/ops/activation.rs (fused sigmoid)
43-
burn-backend = { git = "https://github.com/tracel-ai/burn.git", rev = "ed72d2b", default-features = false }
44-
burn-std = { git = "https://github.com/tracel-ai/burn.git", rev = "ed72d2b", default-features = false }
45-
burn-ir = { git = "https://github.com/tracel-ai/burn.git", rev = "ed72d2b", default-features = false }
43+
burn-backend = { git = "https://github.com/AdaWorldAPI/burn.git", rev = "9b2b671", default-features = false }
44+
burn-std = { git = "https://github.com/AdaWorldAPI/burn.git", rev = "9b2b671", default-features = false }
45+
burn-ir = { git = "https://github.com/AdaWorldAPI/burn.git", rev = "9b2b671", default-features = false }
4646

4747
# ndarray — uses our workspace root (adaworldapi/ndarray with SIMD + HPC)
4848
ndarray = { path = "../..", default-features = false }

0 commit comments

Comments
 (0)