burn/crates/burn-autodiff/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2022-11-20 01:37:06 +08:00
[package]
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
categories = ["science"]
description = "Automatic differentiation backend for the Burn framework"
edition.workspace = true
2022-11-20 01:37:06 +08:00
keywords = ["deep-learning", "machine-learning", "data"]
license.workspace = true
name = "burn-autodiff"
readme.workspace = true
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-autodiff"
version.workspace = true
2022-11-20 01:37:06 +08:00
[features]
default = ["std"]
2022-11-20 01:37:06 +08:00
export_tests = ["burn-tensor-testgen"]
std = []
async = [] # Require std
2022-11-20 01:37:06 +08:00
[dependencies]
2024-08-28 02:12:54 +08:00
burn-common = { path = "../burn-common", version = "0.15.0" }
burn-tensor = { path = "../burn-tensor", version = "0.15.0", default-features = false }
burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.15.0", optional = true }
2023-12-02 03:33:28 +08:00
derive-new = { workspace = true }
spin = { workspace = true }
log = { workspace = true }
2024-02-02 03:50:38 +08:00
[dev-dependencies]
2024-08-28 02:12:54 +08:00
burn-tensor = { path = "../burn-tensor", version = "0.15.0", default-features = false, features = [
2024-02-02 03:50:38 +08:00
"export_tests",
] }