We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c0e2e commit b6b9a8eCopy full SHA for b6b9a8e
.github/workflows/server.yml
@@ -30,7 +30,7 @@ jobs:
30
31
strategy:
32
matrix:
33
- sanitizer: [ADDRESS, THREAD, UNDEFINED]
+ sanitizer: [ADDRESS, UNDEFINED] # THREAD is broken
34
build_type: [RelWithDebInfo]
35
include:
36
- build_type: Release
tests/test-backend-ops.cpp
@@ -785,6 +785,10 @@ struct test_cpy : public test_case {
785
return VARS_TO_STR3(type_src, type_dst, ne);
786
}
787
788
+ double max_nmse_err() override {
789
+ return 1e-6;
790
+ }
791
+
792
size_t op_size(ggml_tensor * t) override {
793
return ggml_nbytes(t) + ggml_nbytes(t->src[0]);
794
0 commit comments