From ec68a9657f1d1b93a790123b9db4e4c8726a55ac Mon Sep 17 00:00:00 2001 From: Jared Van Bortel Date: Wed, 24 Jan 2024 17:31:34 -0500 Subject: [PATCH] test-backend-ops : increase max_nmse_err so Llama passes --- 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 a7cfa2c04..22c08e4ff 100644 --- a/tests/test-backend-ops.cpp +++ b/tests/test-backend-ops.cpp @@ -1504,6 +1504,10 @@ struct test_llama : public test_case { return VARS_TO_STR1(n_tokens); } + double max_nmse_err() override { + return 2e-3; + } + test_llama(int n_tokens = 1) : n_tokens(n_tokens) { }