From: Francesco Petrogalli Date: Fri, 18 Dec 2020 15:08:02 +0000 (+0000) Subject: [cv::transform] Enable CV_SIMD for the 16U case on AArch64. X-Git-Tag: submit/tizen/20220120.021815~1^2~1^2~224^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c526705f4f72fbd5720fb739ae7f01eb2d45d7b4;p=platform%2Fupstream%2Fopencv.git [cv::transform] Enable CV_SIMD for the 16U case on AArch64. --- diff --git a/modules/core/src/matmul.simd.hpp b/modules/core/src/matmul.simd.hpp index 38973ea1a4..c828e2906d 100644 --- a/modules/core/src/matmul.simd.hpp +++ b/modules/core/src/matmul.simd.hpp @@ -1537,7 +1537,7 @@ transform_8u( const uchar* src, uchar* dst, const float* m, int len, int scn, in static void transform_16u( const ushort* src, ushort* dst, const float* m, int len, int scn, int dcn ) { -#if CV_SIMD && !defined(__aarch64__) && !defined(_M_ARM64) +#if CV_SIMD if( scn == 3 && dcn == 3 ) { int x = 0;