mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Implement skeleton for graphene-cli * Configure gpu surface on non wasm32 targets * Create window with full hd size * Create window using the graphen-cli * Use window size for surface creation * Reuse surface configuration * Reduce window size for native applications to 800x600 * Add compute pipeline test * Poll wgpu execution externally * Remove cache node after texture upload * Add profiling instructions * Add more debug markers * Evaluate extract node before flattening the network * Reenable hue saturation node for compilation * Make hue saturation node work on the gpu + make f32 default for user inputs * Add version of test files without caching * Only dispatch each workgroup not pixel * ICE * Add quantization to gpu code * Fix quantization * Load images at graph runtime * Fix quantization calculation * Feature gate quantization * Use git version of autoquant * Add license to `graphene-cli` * Fix graphene-cli test case * Ignore tests on non unix platforms * Fix flattening test
44 lines
1.0 KiB
TOML
44 lines
1.0 KiB
TOML
[package]
|
|
name = "wgpu-executor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
profiling = ["nvtx"]
|
|
passthrough = []
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
graphene-core = { path = "../gcore", features = [
|
|
"async",
|
|
"std",
|
|
"alloc",
|
|
"gpu",
|
|
] }
|
|
graph-craft = { path = "../graph-craft" }
|
|
gpu-executor = { path = "../gpu-executor" }
|
|
dyn-any = { path = "../../libraries/dyn-any", features = [
|
|
"log-bad-types",
|
|
"rc",
|
|
"glam",
|
|
] }
|
|
future-executor = { path = "../future-executor" }
|
|
num-traits = "0.2"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive", "rc"], optional = true }
|
|
glam = { version = "0.22" }
|
|
base64 = "0.13"
|
|
|
|
bytemuck = { version = "1.8" }
|
|
anyhow = "1.0.66"
|
|
wgpu = { version = "0.16", features = ["spirv"] }
|
|
spirv = "0.2.0"
|
|
futures-intrusive = "0.5.0"
|
|
futures = "0.3.25"
|
|
web-sys = { version = "0.3.4", features = ["HtmlCanvasElement"] }
|
|
winit = "0.28.6"
|
|
nvtx = { version = "1.1.1", optional = true }
|