2023-08-31 21:55:43 +08:00
|
|
|
[package]
|
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
2023-12-12 22:39:07 +08:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-08-31 21:55:43 +08:00
|
|
|
name = "custom-wgpu-kernel"
|
|
|
|
publish = false
|
2023-12-12 22:39:07 +08:00
|
|
|
version.workspace = true
|
2023-08-31 21:55:43 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-06 00:58:10 +08:00
|
|
|
burn = { path = "../../crates/burn", default-features = false, features = [
|
|
|
|
"autodiff",
|
|
|
|
"wgpu",
|
|
|
|
"autotune",
|
|
|
|
"template",
|
|
|
|
] }
|
2024-07-22 23:08:40 +08:00
|
|
|
cubecl = { workspace = true, features = ["wgpu"] }
|
2023-08-31 21:55:43 +08:00
|
|
|
|
|
|
|
# Serialization
|
2024-04-06 00:58:10 +08:00
|
|
|
log = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["std", "derive"] }
|
2023-08-31 21:55:43 +08:00
|
|
|
|
|
|
|
# Wgpu internal dependencies
|
|
|
|
derive-new = { workspace = true }
|
|
|
|
bytemuck = { workspace = true }
|