burn/burn-wgpu/Cargo.toml

41 lines
1.2 KiB
TOML

[package]
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
categories = ["science"]
description = "WGPU backend for the Burn framework"
edition = "2021"
keywords = ["deep-learning", "machine-learning", "gpu", "wgpu", "webgpu"]
license = "MIT OR Apache-2.0"
name = "burn-wgpu"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-wgpu"
version = "0.8.0"
[features]
async = []
default = ["async"]
[dependencies]
burn-common = {path = "../burn-common", version = "0.8.0"}
burn-tensor = {path = "../burn-tensor", version = "0.8.0"}
bytemuck = {workspace = true}
derive-new = {workspace = true}
log = {workspace = true}
num-traits = {workspace = true}
rand = {workspace = true}
spin = {workspace = true}
# WGPU stuff
futures-intrusive = {workspace = true}
pollster = {workspace = true}
text_placeholder = {workspace = true}
serde = {workspace = true}
wgpu = {workspace = true}
[dev-dependencies]
burn-autodiff = {path = "../burn-autodiff", version = "0.8.0", default-features = false, features = [
"export_tests",
]}
burn-tensor = {path = "../burn-tensor", version = "0.8.0", default-features = false, features = [
"export_tests",
]}