mirror of https://github.com/tracel-ai/burn.git
24 lines
824 B
TOML
24 lines
824 B
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
categories = ["science"]
|
|
description = "Automatic differentiation backend for the Burn framework"
|
|
edition.workspace = true
|
|
keywords = ["deep-learning", "machine-learning", "data"]
|
|
license.workspace = true
|
|
name = "burn-autodiff"
|
|
readme.workspace = true
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-autodiff"
|
|
version.workspace = true
|
|
|
|
[features]
|
|
default = ["export_tests"]
|
|
export_tests = ["burn-tensor-testgen"]
|
|
|
|
[dependencies]
|
|
burn-common = { path = "../burn-common", version = "0.12.0" }
|
|
burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false }
|
|
burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.12.0", optional = true }
|
|
|
|
derive-new = { workspace = true }
|
|
spin = { workspace = true }
|