Commit 699eda46 authored by Max Khardin's avatar Max Khardin

Remove three sneaky tabs

parent 34b05794
...@@ -214,9 +214,9 @@ PERF_TEST_P(Size_MatType, multiply, TYPICAL_MATS_CORE_ARITHM) ...@@ -214,9 +214,9 @@ PERF_TEST_P(Size_MatType, multiply, TYPICAL_MATS_CORE_ARITHM)
declare.in(a, b, WARMUP_RNG).out(c); declare.in(a, b, WARMUP_RNG).out(c);
if (CV_MAT_DEPTH(type) == CV_32S) if (CV_MAT_DEPTH(type) == CV_32S)
{ {
//According to docs, saturation is not applied when result is 32bit integer //According to docs, saturation is not applied when result is 32bit integer
a /= (2 << 16); a /= (2 << 16);
b /= (2 << 16); b /= (2 << 16);
} }
TEST_CYCLE() multiply(a, b, c); TEST_CYCLE() multiply(a, b, c);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment