mirror of https://github.com/tracel-ai/burn.git
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
authors = ["louisfd <louisfd94@gmail.com>"]
|
|
categories = ["science"]
|
|
description = "Candle backend for the Burn framework"
|
|
edition = "2021"
|
|
keywords = ["deep-learning", "machine-learning", "data"]
|
|
license = "MIT OR Apache-2.0"
|
|
name = "burn-candle"
|
|
readme = "README.md"
|
|
repository = "https://github.com/burn-rs/burn/tree/main/burn-candle"
|
|
version = "0.11.0"
|
|
|
|
[features]
|
|
cuda = ["candle-core/cuda"]
|
|
|
|
[dependencies]
|
|
derive-new = { workspace = true }
|
|
burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false }
|
|
half = { workspace = true }
|
|
|
|
# TODO remove pinned version ("=") once candle-core is updated to 0.3.1
|
|
candle-core = { version = "=0.3.0" }
|
|
|
|
[dev-dependencies]
|
|
burn-autodiff = { path = "../burn-autodiff", version = "0.11.0", default-features = false, features = [
|
|
"export_tests",
|
|
] }
|
|
burn-tch = { path = "../burn-tch", version = "0.11.0", default-features = false, features = [
|
|
] }
|
|
burn-tensor = { path = "../burn-tensor", version = "0.11.0", default-features = false, features = [
|
|
"export_tests",
|
|
] }
|