From 5d7695e03f47c6573c3d6e8683b146f5d85cd555 Mon Sep 17 00:00:00 2001 From: slaren Date: Sat, 22 Jun 2024 17:38:11 +0200 Subject: [PATCH] test-backend-ops : increase cpy max nmse --- tests/test-backend-ops.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test-backend-ops.cpp b/tests/test-backend-ops.cpp index 7c504e937a851..1ed74e543dd9f 100644 --- a/tests/test-backend-ops.cpp +++ b/tests/test-backend-ops.cpp @@ -785,6 +785,10 @@ struct test_cpy : public test_case { return VARS_TO_STR3(type_src, type_dst, ne); } + double max_nmse_err() override { + return 1e-6; + } + size_t op_size(ggml_tensor * t) override { return ggml_nbytes(t) + ggml_nbytes(t->src[0]); }