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

This commit is contained in:
Kirill Kornyakov 2011-11-21 11:48:56 +00:00
parent d55a56d12d
commit 03002fff54

View File

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