2023-06-02 23:52:47 +08:00
|
|
|
[package]
|
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
|
|
categories = ["science"]
|
2023-06-15 21:20:53 +08:00
|
|
|
description = "WGPU backend for the Burn framework"
|
2023-12-12 22:39:07 +08:00
|
|
|
edition.workspace = true
|
2023-06-15 21:20:53 +08:00
|
|
|
keywords = ["deep-learning", "machine-learning", "gpu", "wgpu", "webgpu"]
|
2023-12-12 22:39:07 +08:00
|
|
|
license.workspace = true
|
2023-06-02 23:52:47 +08:00
|
|
|
name = "burn-wgpu"
|
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-wgpu"
|
2023-12-12 22:39:07 +08:00
|
|
|
version.workspace = true
|
2023-06-02 23:52:47 +08:00
|
|
|
|
2023-06-13 02:24:19 +08:00
|
|
|
[features]
|
2024-03-07 00:23:53 +08:00
|
|
|
default = ["fusion", "burn-jit/default"]
|
|
|
|
fusion = ["burn-fusion", "burn-jit/fusion"]
|
|
|
|
autotune = ["burn-jit/autotune"]
|
2024-05-19 22:55:04 +08:00
|
|
|
template = ["burn-jit/template", "burn-cube/template"]
|
2024-03-07 00:23:53 +08:00
|
|
|
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]
|
2024-05-29 06:12:44 +08:00
|
|
|
burn-jit = { path = "../burn-jit", version = "0.14.0", default-features = false }
|
2024-06-19 22:12:11 +08:00
|
|
|
burn-compute = { path = "../burn-compute", version = "0.14.0", default-features = false }
|
2024-05-29 06:12:44 +08:00
|
|
|
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-11-10 10:21:41 +08:00
|
|
|
|
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"] }
|
2024-03-07 00:23:53 +08:00
|
|
|
pollster = { workspace = true }
|
2023-06-02 23:52:47 +08:00
|
|
|
|
2024-03-07 00:23:53 +08:00
|
|
|
log = { workspace = true }
|
2024-07-02 20:25:28 +08:00
|
|
|
async-channel = { workspace = true }
|
2024-03-07 00:23:53 +08:00
|
|
|
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]
|
2024-05-29 06:12:44 +08:00
|
|
|
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
|
|
|
] }
|
2024-06-01 05:07:21 +08:00
|
|
|
burn-cube = { path = "../burn-cube", version = "0.14.0", features = [
|
|
|
|
"export_tests",
|
2024-06-19 22:12:11 +08:00
|
|
|
] }
|