Update graphene-cli and fix no-std compilation for graphene-core (#1428)

* Initialize wgpu executor from graphene cli

* Make `graphene-core` `no-std` complient again

* Implemnt image similarity calculation

* Add nan checks

* Make image comparison optional

* Feature gate quantization to reduce the number of warnings
This commit is contained in:
Dennis Kobert 2023-09-30 11:20:17 +02:00 committed by GitHub
parent b9027883a8
commit 7e3469fa3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 571 additions and 406 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "nightly-2023-03-04"
channel = "nightly-2023-05-27"
components = [
"rust-src",
"rustc-dev",

View file

@ -13,7 +13,7 @@ crate-type = ["dylib", "lib"]
libm = { git = "https://github.com/rust-lang/libm", tag = "0.2.5" }
[dependencies]
spirv-std = { version = "0.8" }
spirv-std = { version = "0.9" }
graphene-core = { path = "{{gcore_path}}", default-features = false, features = [
"gpu",
] }

View file

@ -1,5 +1,5 @@
[toolchain]
channel = "nightly-2023-03-04"
channel = "nightly-2023-05-27"
components = [
"rust-src",
"rustc-dev",