burn/crates/burn-wgpu/Cargo.toml

45 lines
1.6 KiB
TOML
Raw Normal View History

2023-06-02 23:52:47 +08:00
[package]
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
categories = ["science"]
description = "WGPU backend for the Burn framework"
edition.workspace = true
keywords = ["deep-learning", "machine-learning", "gpu", "wgpu", "webgpu"]
license.workspace = true
2023-06-02 23:52:47 +08:00
name = "burn-wgpu"
readme.workspace = true
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-wgpu"
version.workspace = true
2023-06-02 23:52:47 +08:00
2023-06-13 02:24:19 +08:00
[features]
default = ["fusion", "burn-jit/default"]
fusion = ["burn-fusion", "burn-jit/fusion"]
autotune = ["burn-jit/autotune"]
template = ["burn-jit/template", "burn-cube/template"]
doc = ["burn-jit/doc"]
std = ["burn-jit/std"]
2023-06-13 02:24:19 +08:00
2023-06-02 23:52:47 +08:00
[dependencies]
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false }
burn-compute = { path = "../burn-compute", version = "0.14.0", default-features = false }
burn-tensor = { path = "../burn-tensor", version = "0.14.0" }
burn-common = { path = "../burn-common", version = "0.14.0" }
burn-fusion = { path = "../burn-fusion", version = "0.14.0", optional = true }
burn-cube = { path = "../burn-cube", version = "0.14.0" }
2023-08-15 23:26:00 +08:00
bytemuck = { workspace = true }
2023-09-29 05:09:58 +08:00
wgpu = { workspace = true, features = ["fragile-send-sync-non-atomic-wasm"] }
pollster = { workspace = true }
2023-06-02 23:52:47 +08:00
log = { workspace = true }
async-channel = { workspace = true }
derive-new = { workspace = true }
2023-09-25 22:42:45 +08:00
hashbrown = { workspace = true }
2023-06-02 23:52:47 +08:00
[dev-dependencies]
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false, features = [
2023-06-02 23:52:47 +08:00
"export_tests",
2023-08-15 23:26:00 +08:00
] }
burn-cube = { path = "../burn-cube", version = "0.14.0", features = [
"export_tests",
] }