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
68 lines
1.4 KiB
TOML
68 lines
1.4 KiB
TOML
[workspace]
|
|
members = [
|
|
"editor",
|
|
"document-legacy",
|
|
"proc-macros",
|
|
"frontend/wasm",
|
|
"frontend/src-tauri",
|
|
"node-graph/gcore",
|
|
"node-graph/gstd",
|
|
"node-graph/graph-craft",
|
|
"node-graph/graphene-cli",
|
|
"node-graph/interpreted-executor",
|
|
"node-graph/node-macro",
|
|
"node-graph/compilation-server",
|
|
"node-graph/compilation-client",
|
|
"node-graph/vulkan-executor",
|
|
"node-graph/wgpu-executor",
|
|
"node-graph/gpu-executor",
|
|
"node-graph/future-executor",
|
|
"node-graph/gpu-compiler/gpu-compiler-bin-wrapper",
|
|
"libraries/dyn-any",
|
|
"libraries/bezier-rs",
|
|
"website/other/bezier-rs-demos/wasm",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
exclude = ["node-graph/gpu-compiler"]
|
|
|
|
[workspace.dependencies]
|
|
specta = { git = "https://github.com/oscartbeaumont/rspc", rev = "9725ddbfe40183debc055b88c37910eb6f818eae", features = [
|
|
"glam",
|
|
] }
|
|
xxhash-rust = { version = "0.8.4", features = ["xxh3"] }
|
|
|
|
[profile.dev.package.graphite-editor]
|
|
opt-level = 1
|
|
|
|
# This is a mitigation for https://github.com/rustwasm/wasm-pack/issues/981
|
|
# Which is needed because the node_registry function is too large
|
|
[profile.dev.package.interpreted-executor]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package.graphene-core]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package.graphene-std]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package.autoquant]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.image]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.xxhash-rust]
|
|
opt-level = 3
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = true
|