Do not use default burn-compute features unless enabled. (#1908)

This commit is contained in:
Arthur Brussee 2024-06-19 15:12:11 +01:00 committed by GitHub
parent 560d77d154
commit 14d1bbba64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ std = ["burn-jit/std"]
[dependencies]
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false }
burn-compute = { path = "../burn-compute", version = "0.14.0" }
burn-compute = { path = "../burn-compute", version = "0.14.0", default-features = false }
burn-tensor = { path = "../burn-tensor", version = "0.14.0" }
burn-common = { path = "../burn-common", version = "0.14.0" }
burn-cube = { path = "../burn-cube", version = "0.14.0" }
@ -27,7 +27,7 @@ burn-fusion = { path = "../burn-fusion", version = "0.14.0", optional = true }
half = { workspace = true }
bytemuck = { workspace = true }
cudarc = { version = "0.11.6", features=["cuda-12030"] }
cudarc = { version = "0.11.6", features = ["cuda-12030"] }
log = { workspace = true }
derive-new = { workspace = true }

View File

@ -20,7 +20,7 @@ std = ["burn-jit/std"]
[dependencies]
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false }
burn-compute = { path = "../burn-compute", version = "0.14.0" }
burn-compute = { path = "../burn-compute", version = "0.14.0", default-features = false }
burn-tensor = { path = "../burn-tensor", version = "0.14.0" }
burn-common = { path = "../burn-common", version = "0.14.0" }
burn-fusion = { path = "../burn-fusion", version = "0.14.0", optional = true }
@ -41,4 +41,4 @@ burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false,
] }
burn-cube = { path = "../burn-cube", version = "0.14.0", features = [
"export_tests",
]}
] }