mirror of https://github.com/tracel-ai/burn.git
24 lines
546 B
TOML
24 lines
546 B
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "custom-wgpu-kernel"
|
|
publish = false
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
burn = { path = "../../crates/burn", default-features = false, features = [
|
|
"autodiff",
|
|
"wgpu",
|
|
"autotune",
|
|
"template",
|
|
] }
|
|
|
|
# Serialization
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["std", "derive"] }
|
|
|
|
# Wgpu internal dependencies
|
|
derive-new = { workspace = true }
|
|
bytemuck = { workspace = true }
|