Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
c2fb4deb
Commit
c2fb4deb
authored
Apr 05, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11224 from alalek:fix_core_min_avx2
parents
9ca3dec1
45a69ebe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
arithm_simd.hpp
modules/core/src/arithm_simd.hpp
+1
-1
No files found.
modules/core/src/arithm_simd.hpp
View file @
c2fb4deb
...
...
@@ -148,7 +148,7 @@ FUNCTOR_CLOSURE_2arg(VSub, double, return _mm256_sub_pd (a, b));
FUNCTOR_TEMPLATE
(
VMin
);
FUNCTOR_CLOSURE_2arg
(
VMin
,
uchar
,
return
_mm256_min_epu8
(
a
,
b
));
FUNCTOR_CLOSURE_2arg
(
VMin
,
schar
,
return
_mm256_min_epi8
(
a
,
b
));
FUNCTOR_CLOSURE_2arg
(
VMin
,
ushort
,
return
_mm256_min_ep
i
16
(
a
,
b
));
FUNCTOR_CLOSURE_2arg
(
VMin
,
ushort
,
return
_mm256_min_ep
u
16
(
a
,
b
));
FUNCTOR_CLOSURE_2arg
(
VMin
,
short
,
return
_mm256_min_epi16
(
a
,
b
));
FUNCTOR_CLOSURE_2arg
(
VMin
,
int
,
return
_mm256_min_epi32
(
a
,
b
));
FUNCTOR_CLOSURE_2arg
(
VMin
,
float
,
return
_mm256_min_ps
(
a
,
b
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment