1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

RISC-V: increase DotProduct test threshold a bit

This commit is contained in:
Maksim Shabunin
2025-01-30 15:09:32 +03:00
parent d5f69305cb
commit f6c9ca5602
+1 -1
View File
@@ -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 );
}