From f6c9ca560283323a4abda2a98cfff9fdf294ab5a Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Thu, 30 Jan 2025 15:09:32 +0300 Subject: [PATCH] RISC-V: increase DotProduct test threshold a bit --- modules/core/test/test_math.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/test/test_math.cpp b/modules/core/test/test_math.cpp index dc9153680c..b1777a7752 100644 --- a/modules/core/test/test_math.cpp +++ b/modules/core/test/test_math.cpp @@ -504,7 +504,7 @@ double Core_DotProductTest::get_success_error_level( int test_case_idx, int i, i #ifdef __riscv const int depth = test_mat[i][j].depth(); if (depth == CV_64F) - return 1.7e-5; + return 2.5e-5; #endif return Core_MatrixTest::get_success_error_level( test_case_idx, i, j ); }