From 507f0a67ceef20a043c63f0c579254268cb01ab9 Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Mon, 5 Jun 2023 08:40:37 +0200 Subject: [PATCH] Correction of issue #105 --- Source/MatrixFunctions/arm_mat_mult_f32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/MatrixFunctions/arm_mat_mult_f32.c b/Source/MatrixFunctions/arm_mat_mult_f32.c index 352ec21c..6728959e 100644 --- a/Source/MatrixFunctions/arm_mat_mult_f32.c +++ b/Source/MatrixFunctions/arm_mat_mult_f32.c @@ -561,7 +561,7 @@ arm_status arm_mat_mult_f32( uint16_t numColsA = pSrcA->numCols; /* number of columns of input matrix A */ - uint16_t col, i = 0U, j, row = numRowsA, rowCnt, colCnt; /* loop counters */ + uint32_t col, i = 0U, j, row = numRowsA, rowCnt, colCnt; /* loop counters */ arm_status status; /* status of matrix multiplication */ float32x4_t a0V, a1V, a2V, a3V, a4V, a5V, a6V, a7V;