Exclude burn-cuda from workspace to avoid build error for some users (#1716)

This commit is contained in:
Sylvain Benner 2024-05-01 07:33:02 -04:00 committed by GitHub
parent ff9e875321
commit 9f62094c07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 17 deletions

24
Cargo.lock generated
View File

@ -461,22 +461,6 @@ dependencies = [
"thiserror",
]
[[package]]
name = "burn-cuda"
version = "0.14.0"
dependencies = [
"burn-common",
"burn-compute",
"burn-fusion",
"burn-jit",
"burn-tensor",
"bytemuck",
"cudarc",
"derive-new",
"half",
"log",
]
[[package]]
name = "burn-dataset"
version = "0.14.0"
@ -3792,6 +3776,14 @@ dependencies = [
"thiserror",
]
[[package]]
name = "refactor"
version = "0.14.0"
dependencies = [
"burn",
"serde",
]
[[package]]
name = "regex"
version = "1.10.4"

View File

@ -14,7 +14,10 @@ members = [
"xtask",
]
exclude = ["examples/notebook"]
exclude = [
"examples/notebook",
"crates/burn-cuda" # comment this line to work on burn-cuda
]
[workspace.package]
edition = "2021"