Skip to content

Commit b4716b1

Browse files
committed
core: fix convertTo() AVX2 optimization
1 parent c0dc2f2 commit b4716b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/src/convert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3678,7 +3678,7 @@ cvtScale_<short, int, float>( const short* src, size_t sstep,
36783678
if (CV_CPU_HAS_SUPPORT_AVX2)
36793679
{
36803680
opt_AVX2::cvtScale_s16s32f32Line_AVX2(src, dst, scale, shift, size.width);
3681-
return;
3681+
continue;
36823682
}
36833683
#endif
36843684
#if CV_SSE2

0 commit comments

Comments
 (0)