Optimized version of 32F Norm function demands bigger MaxErr value, because it calculates norm in floats instead of double.

pull/13383/head
Kirill Kornyakov 14 years ago
parent d55a56d12d
commit 03002fff54
  1. 4
      modules/core/test/test_arithm.cpp

@ -1246,7 +1246,11 @@ struct NormOp : public BaseElemWiseOp
}
double getMaxErr(int)
{
#ifdef HAVE_TEGRA_OPTIMIZATION
return 2e-6;
#else
return 1e-6;
#endif
}
int normType;
};

Loading…
Cancel
Save