Skip to content

Commit

Permalink
Removed useless commented code as reported in issue #195
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Jul 9, 2024
1 parent 7236701 commit 5900515
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Source/BasicMathFunctions/arm_dot_prod_q15.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,7 @@ ARM_DSP_ATTRIBUTE void arm_dot_prod_q15(
/* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */

/* Calculate dot product and store result in a temporary buffer. */
//#if defined (ARM_MATH_DSP)
// sum = __SMLALD(*pSrcA++, *pSrcB++, sum);
//#else
sum += (q63_t)((q31_t) *pSrcA++ * *pSrcB++);
//#endif

/* Decrement loop counter */
blkCnt--;
Expand Down

0 comments on commit 5900515

Please sign in to comment.