From ce81868ba43fb86a48e39ba87f8b25b632978a8e Mon Sep 17 00:00:00 2001 From: Andrey Kamaev Date: Mon, 19 Dec 2011 15:15:40 +0000 Subject: [PATCH] Fixed cv::norm accuracy test allowed error --- modules/core/test/test_arithm.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/core/test/test_arithm.cpp b/modules/core/test/test_arithm.cpp index ca0bd2e..7cc1078 100644 --- a/modules/core/test/test_arithm.cpp +++ b/modules/core/test/test_arithm.cpp @@ -1246,11 +1246,7 @@ struct NormOp : public BaseElemWiseOp } double getMaxErr(int) { -#ifdef HAVE_TEGRA_OPTIMIZATION - return 2e-6; -#else - return 1e-6; -#endif + return 1e-6; } int normType; }; -- 2.7.4