From c526705f4f72fbd5720fb739ae7f01eb2d45d7b4 Mon Sep 17 00:00:00 2001 From: Francesco Petrogalli Date: Fri, 18 Dec 2020 15:08:02 +0000 Subject: [PATCH] [cv::transform] Enable CV_SIMD for the 16U case on AArch64. --- modules/core/src/matmul.simd.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/matmul.simd.hpp b/modules/core/src/matmul.simd.hpp index 38973ea..c828e29 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; -- 2.7.4