[cv::transform] Enable CV_SIMD for the 16U case on AArch64.
authorFrancesco Petrogalli <francesco.petrogalli@arm.com>
Fri, 18 Dec 2020 15:08:02 +0000 (15:08 +0000)
committerAlexander Alekhin <alexander.a.alekhin@gmail.com>
Sun, 20 Dec 2020 15:58:21 +0000 (15:58 +0000)
modules/core/src/matmul.simd.hpp

index 38973ea1a4dbc81889d958c206ea588b9930c421..c828e2906dcba49f90a3954f7922b638cc9a6f8a 100644 (file)
@@ -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;