Quantization node (#887)

Add basic quantization node
This commit is contained in:
Dennis Kobert
2022-12-31 17:30:22 -08:00
committed by Keavon Chambers
parent a492e7a4bb
commit 8968e531a3
10 changed files with 528 additions and 25 deletions
+2
View File
@@ -14,9 +14,11 @@ default = ["memoization"]
gpu = ["graphene-core/gpu", "gpu-compiler-bin-wrapper", "compilation-client"]
vulkan = ["gpu", "vulkan-executor"]
wgpu = ["gpu", "wgpu-executor"]
quantization = ["autoquant"]
[dependencies]
autoquant = { git = "https://github.com/truedoctor/autoquant", optional = true, features = ["fitting"] }
graphene-core = {path = "../gcore", features = ["async", "std" ], default-features = false}
borrow_stack = {path = "../borrow_stack"}
dyn-any = {path = "../../libraries/dyn-any", features = ["derive"]}