From c0f96fe5d85de5bbe4f3a4dcca4cdfac1baccd7d Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Wed, 29 May 2019 09:50:56 +0200 Subject: [PATCH] CMSIS-DSP: Corrected issue in Neon version of arm_correlate_f32. Issue was introduced by a merge on our internal branch. --- Source/FilteringFunctions/arm_correlate_f32.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/FilteringFunctions/arm_correlate_f32.c b/Source/FilteringFunctions/arm_correlate_f32.c index 60a43f50..10965265 100644 --- a/Source/FilteringFunctions/arm_correlate_f32.c +++ b/Source/FilteringFunctions/arm_correlate_f32.c @@ -371,6 +371,8 @@ void arm_correlate_f32( x2v = vld1q_f32(px); c = vld1q_f32(py); + py += 4; + x = x1v; res = vmlaq_n_f32(res,x,c[0]);