Commit d168c2b9 authored by Kirill Kornyakov's avatar Kirill Kornyakov

Optimized version of CountNonZero functions added

parent 6b869f2e
...@@ -232,9 +232,9 @@ typedef int (*CountNonZeroFunc)(const uchar*, int); ...@@ -232,9 +232,9 @@ typedef int (*CountNonZeroFunc)(const uchar*, int);
static CountNonZeroFunc countNonZeroTab[] = static CountNonZeroFunc countNonZeroTab[] =
{ {
(CountNonZeroFunc)countNonZero8u, (CountNonZeroFunc)countNonZero8u, (CountNonZeroFunc)GET_OPTIMIZED(countNonZero8u), (CountNonZeroFunc)(countNonZero8u),
(CountNonZeroFunc)countNonZero16u, (CountNonZeroFunc)countNonZero16u, (CountNonZeroFunc)(countNonZero16u), (CountNonZeroFunc)(countNonZero16u),
(CountNonZeroFunc)countNonZero32s, (CountNonZeroFunc)countNonZero32f, (CountNonZeroFunc)(countNonZero32s), (CountNonZeroFunc)GET_OPTIMIZED(countNonZero32f),
(CountNonZeroFunc)countNonZero64f, 0 (CountNonZeroFunc)countNonZero64f, 0
}; };
......
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