From 1e8499a24b8a487b4059ffea2144aad9e0bdc374 Mon Sep 17 00:00:00 2001 From: Sun Yiming Z Date: Wed, 10 Mar 2021 09:41:27 +0800 Subject: [PATCH] Update arm_mat_mult_fast_q15.c --- Source/MatrixFunctions/arm_mat_mult_fast_q15.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/MatrixFunctions/arm_mat_mult_fast_q15.c b/Source/MatrixFunctions/arm_mat_mult_fast_q15.c index 0ebca7ff..62ddcaf8 100644 --- a/Source/MatrixFunctions/arm_mat_mult_fast_q15.c +++ b/Source/MatrixFunctions/arm_mat_mult_fast_q15.c @@ -258,7 +258,7 @@ arm_status arm_mat_mult_fast_q15( pInA2 = pInA + numColsA; pInB2 = pInB + numRowsB; - /* Read in two elements at once - alows dual MAC instruction */ + /* Read in two elements at once - allows dual MAC instruction */ colCnt = numColsA >> 1U; #else colCnt = numColsA >> 2U;