Skip to content

Commit c526705

Browse files
Francesco Petrogallialalek
authored andcommitted
[cv::transform] Enable CV_SIMD for the 16U case on AArch64.
1 parent ef27c11 commit c526705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/src/matmul.simd.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1537,7 +1537,7 @@ transform_8u( const uchar* src, uchar* dst, const float* m, int len, int scn, in
15371537
static void
15381538
transform_16u( const ushort* src, ushort* dst, const float* m, int len, int scn, int dcn )
15391539
{
1540-
#if CV_SIMD && !defined(__aarch64__) && !defined(_M_ARM64)
1540+
#if CV_SIMD
15411541
if( scn == 3 && dcn == 3 )
15421542
{
15431543
int x = 0;

0 commit comments

Comments
 (0)