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-02-21 02:57:55 +08:00
|
|
|
burn = {path = "../../crates/burn", default-features = false, features=["autodiff", "wgpu", "autotune"]}
|
2023-08-31 21:55:43 +08:00
|
|
|
|
|
|
|
# Serialization
|
|
|
|
log = {workspace = true}
|
|
|
|
serde = {workspace = true, features = ["std", "derive"]}
|
|
|
|
|
|
|
|
# Wgpu internal dependencies
|
|
|
|
derive-new = { workspace = true }
|
|
|
|
bytemuck = { workspace = true }
|