2022-11-16 10:06:40 +08:00
|
|
|
[package]
|
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
2023-02-25 22:38:01 +08:00
|
|
|
categories = ["science"]
|
2024-02-01 03:47:02 +08:00
|
|
|
description = "LibTorch backend for the Burn framework using the tch bindings."
|
2023-12-12 22:39:07 +08:00
|
|
|
edition.workspace = true
|
2022-11-16 10:06:40 +08:00
|
|
|
keywords = ["deep-learning", "machine-learning", "data"]
|
2023-12-12 22:39:07 +08:00
|
|
|
license.workspace = true
|
2023-02-25 22:38:01 +08:00
|
|
|
name = "burn-tch"
|
2023-12-12 22:39:07 +08:00
|
|
|
readme.workspace = true
|
2024-05-10 03:40:05 +08:00
|
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-tch"
|
2023-12-12 22:39:07 +08:00
|
|
|
version.workspace = true
|
2022-11-16 10:06:40 +08:00
|
|
|
|
|
|
|
[features]
|
2023-12-01 22:48:28 +08:00
|
|
|
default = []
|
2022-11-16 10:06:40 +08:00
|
|
|
doc = ["tch/doc-only"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-29 06:12:44 +08:00
|
|
|
burn-tensor = { path = "../burn-tensor", version = "0.14.0" }
|
2023-03-17 21:31:52 +08:00
|
|
|
|
2023-12-02 03:33:28 +08:00
|
|
|
half = { workspace = true, features = ["std"] }
|
2024-02-01 03:47:02 +08:00
|
|
|
libc = { workspace = true }
|
2023-12-02 03:33:28 +08:00
|
|
|
rand = { workspace = true, features = ["std"] }
|
2024-02-01 03:47:02 +08:00
|
|
|
tch = { workspace = true, features = ["download-libtorch"] }
|
2023-03-01 09:01:01 +08:00
|
|
|
|
2022-11-16 10:06:40 +08:00
|
|
|
[dev-dependencies]
|
2024-05-29 06:12:44 +08:00
|
|
|
burn-autodiff = { path = "../burn-autodiff", version = "0.14.0", default-features = false, features = [
|
2023-02-25 22:38:01 +08:00
|
|
|
"export_tests",
|
2023-12-02 03:33:28 +08:00
|
|
|
] }
|
2024-05-29 06:12:44 +08:00
|
|
|
burn-tensor = { path = "../burn-tensor", version = "0.14.0", default-features = false, features = [
|
2023-02-25 22:38:01 +08:00
|
|
|
"export_tests",
|
2023-12-02 03:33:28 +08:00
|
|
|
] }
|
2024-01-24 03:13:57 +08:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2024-02-02 01:47:46 +08:00
|
|
|
features = ["doc"]
|