mirror of https://github.com/tracel-ai/burn.git
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
categories = ["science"]
|
|
description = "LibTorch backend for the Burn framework using the tch bindings."
|
|
edition.workspace = true
|
|
keywords = ["deep-learning", "machine-learning", "data"]
|
|
license.workspace = true
|
|
name = "burn-tch"
|
|
readme.workspace = true
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-tch"
|
|
version.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
doc = ["tch/doc-only"]
|
|
|
|
[dependencies]
|
|
burn-tensor = { path = "../burn-tensor", version = "0.14.0" }
|
|
|
|
half = { workspace = true, features = ["std"] }
|
|
libc = { workspace = true }
|
|
rand = { workspace = true, features = ["std"] }
|
|
tch = { workspace = true, features = ["download-libtorch"] }
|
|
|
|
[dev-dependencies]
|
|
burn-autodiff = { path = "../burn-autodiff", version = "0.14.0", default-features = false, features = [
|
|
"export_tests",
|
|
] }
|
|
burn-tensor = { path = "../burn-tensor", version = "0.14.0", default-features = false, features = [
|
|
"export_tests",
|
|
] }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["doc"]
|