Просмотр исходного кода

CMSIS-DSP: Corrected build issue with Neon

New arm_mse_f32 function was no more building.
Christophe Favergeon 3 лет назад
Родитель
Сommit
a0fa802ee2
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      Source/StatisticsFunctions/arm_mse_f32.c

+ 1 - 0
Source/StatisticsFunctions/arm_mse_f32.c

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