CMSIS-DSP: Corrected build issue with Neon

New arm_mse_f32 function was no more building.
pull/19/head
Christophe Favergeon 4 years ago
parent d4fee7d427
commit a0fa802ee2

@ -115,6 +115,7 @@ void arm_mse_f32(
float32x4_t vecA, vecB; float32x4_t vecA, vecB;
float32x4_t vecSum; float32x4_t vecSum;
uint32_t blkCnt; uint32_t blkCnt;
float32_t inA, inB;
float32_t sum = 0.0f; float32_t sum = 0.0f;
vecSum = vdupq_n_f32(0.0f); vecSum = vdupq_n_f32(0.0f);
#if !defined(__aarch64__) #if !defined(__aarch64__)

Loading…
Cancel
Save