code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_shift_q15.c * * Description: Shifts the elements of a Q15 vector by a specified number of bits. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup shift * @{ */ /** * @brief Shifts the elements of a Q15 vector a specified number of bits. * @param[in] *pSrc points to the input vector * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q15 range [0x8000 0x7FFF] will be saturated. */ void arm_shift_q15( q15_t * pSrc, int8_t shiftBits, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ uint8_t sign; /* Sign of shiftBits */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t in1, in2; /* Temporary variables */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* Getting the sign of shiftBits */ sign = (shiftBits & 0x80); /* If the shift value is positive then do right shift else left shift */ if(sign == 0u) { /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Read 2 inputs */ in1 = *pSrc++; in2 = *pSrc++; /* C = A << shiftBits */ /* Shift the inputs and then store the results in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(__SSAT((in1 << shiftBits), 16), __SSAT((in2 << shiftBits), 16), 16); #else *__SIMD32(pDst)++ = __PKHBT(__SSAT((in2 << shiftBits), 16), __SSAT((in1 << shiftBits), 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ in1 = *pSrc++; in2 = *pSrc++; #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(__SSAT((in1 << shiftBits), 16), __SSAT((in2 << shiftBits), 16), 16); #else *__SIMD32(pDst)++ = __PKHBT(__SSAT((in2 << shiftBits), 16), __SSAT((in1 << shiftBits), 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A << shiftBits */ /* Shift and then store the results in the destination buffer. */ *pDst++ = __SSAT((*pSrc++ << shiftBits), 16); /* Decrement the loop counter */ blkCnt--; } } else { /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Read 2 inputs */ in1 = *pSrc++; in2 = *pSrc++; /* C = A >> shiftBits */ /* Shift the inputs and then store the results in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT((in1 >> -shiftBits), (in2 >> -shiftBits), 16); #else *__SIMD32(pDst)++ = __PKHBT((in2 >> -shiftBits), (in1 >> -shiftBits), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ in1 = *pSrc++; in2 = *pSrc++; #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT((in1 >> -shiftBits), (in2 >> -shiftBits), 16); #else *__SIMD32(pDst)++ = __PKHBT((in2 >> -shiftBits), (in1 >> -shiftBits), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A >> shiftBits */ /* Shift the inputs and then store the results in the destination buffer. */ *pDst++ = (*pSrc++ >> -shiftBits); /* Decrement the loop counter */ blkCnt--; } } #else /* Run the below code for Cortex-M0 */ /* Getting the sign of shiftBits */ sign = (shiftBits & 0x80); /* If the shift value is positive then do right shift else left shift */ if(sign == 0u) { /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A << shiftBits */ /* Shift and then store the results in the destination buffer. */ *pDst++ = __SSAT(((q31_t) * pSrc++ << shiftBits), 16); /* Decrement the loop counter */ blkCnt--; } } else { /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A >> shiftBits */ /* Shift the inputs and then store the results in the destination buffer. */ *pDst++ = (*pSrc++ >> -shiftBits); /* Decrement the loop counter */ blkCnt--; } } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of shift group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q15.c
C
lgpl
6,650
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_abs_q31.c * * Description: Q31 vector absolute value. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicAbs * @{ */ /** * @brief Q31 vector absolute value. * @param[in] *pSrc points to the input buffer * @param[out] *pDst points to the output buffer * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * The Q31 value -1 (0x80000000) will be saturated to the maximum allowable positive value 0x7FFFFFFF. */ void arm_abs_q31( q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ q31_t in; /* Input value */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = |A| */ /* Calculate absolute of input (if -1 then saturated to 0x7fffffff) and then store the results in the destination buffer. */ in = *pSrc++; *pDst++ = (in > 0) ? in : ((in == 0x80000000) ? 0x7fffffff : -in); in = *pSrc++; *pDst++ = (in > 0) ? in : ((in == 0x80000000) ? 0x7fffffff : -in); in = *pSrc++; *pDst++ = (in > 0) ? in : ((in == 0x80000000) ? 0x7fffffff : -in); in = *pSrc++; *pDst++ = (in > 0) ? in : ((in == 0x80000000) ? 0x7fffffff : -in); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = |A| */ /* Calculate absolute value of the input (if -1 then saturated to 0x7fffffff) and then store the results in the destination buffer. */ in = *pSrc++; *pDst++ = (in > 0) ? in : ((in == 0x80000000) ? 0x7fffffff : -in); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicAbs group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q31.c
C
lgpl
3,439
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_negate_q31.c * * Description: Negates Q31 vectors. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup negate * @{ */ /** * @brief Negates the elements of a Q31 vector. * @param[in] *pSrc points to the input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * The Q31 value -1 (0x80000000) will be saturated to the maximum allowable positive value 0x7FFFFFFF. */ void arm_negate_q31( q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t in; /* Temporary variable */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = -A */ /* Negate and then store the results in the destination buffer. */ in = *pSrc++; *pDst++ = (in == 0x80000000) ? 0x7fffffff : -in; in = *pSrc++; *pDst++ = (in == 0x80000000) ? 0x7fffffff : -in; in = *pSrc++; *pDst++ = (in == 0x80000000) ? 0x7fffffff : -in; in = *pSrc++; *pDst++ = (in == 0x80000000) ? 0x7fffffff : -in; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = -A */ /* Negate and then store the result in the destination buffer. */ in = *pSrc++; *pDst++ = (in == 0x80000000) ? 0x7fffffff : -in; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of negate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q31.c
C
lgpl
3,212
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_offset_f32.c * * Description: Floating-point vector offset. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup offset Vector Offset * * Adds a constant offset to each element of a vector. * * <pre> * pDst[n] = pSrc[n] + offset, 0 <= n < blockSize. * </pre> * * There are separate functions for floating-point, Q7, Q15, and Q31 data types. */ /** * @addtogroup offset * @{ */ /** * @brief Adds a constant offset to a floating-point vector. * @param[in] *pSrc points to the input vector * @param[in] offset is the offset to be added * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. */ void arm_offset_f32( float32_t * pSrc, float32_t offset, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the results in the destination buffer. */ *pDst++ = (*pSrc++) + offset; *pDst++ = (*pSrc++) + offset; *pDst++ = (*pSrc++) + offset; *pDst++ = (*pSrc++) + offset; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the result in the destination buffer. */ *pDst++ = (*pSrc++) + offset; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of offset group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_f32.c
C
lgpl
3,169
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_dot_prod_f32.c * * Description: Floating-point dot product. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup dot_prod Vector Dot Product * * Computes the dot product of two vectors. * The vectors are multiplied element-by-element and then summed. * There are separate functions for floating-point, Q7, Q15, and Q31 data types. */ /** * @addtogroup dot_prod * @{ */ /** * @brief Dot product of floating-point vectors. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[in] blockSize number of samples in each vector * @param[out] *result output result returned here * @return none. */ void arm_dot_prod_f32( float32_t * pSrcA, float32_t * pSrcB, uint32_t blockSize, float32_t * result) { float32_t sum = 0.0f; /* Temporary result storage */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the result in a temporary buffer */ sum += (*pSrcA++) * (*pSrcB++); sum += (*pSrcA++) * (*pSrcB++); sum += (*pSrcA++) * (*pSrcB++); sum += (*pSrcA++) * (*pSrcB++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the result in a temporary buffer. */ sum += (*pSrcA++) * (*pSrcB++); /* Decrement the loop counter */ blkCnt--; } /* Store the result back in the destination buffer */ *result = sum; } /** * @} end of dot_prod group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_f32.c
C
lgpl
3,479
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_add_f32.c * * Description: Floating-point vector addition. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup BasicAdd Vector Addition * * Element-by-element addition of two vectors. * * <pre> * pDst[n] = pSrcA[n] + pSrcB[n], 0 <= n < blockSize. * </pre> * * There are separate functions for floating-point, Q7, Q15, and Q31 data types. */ /** * @addtogroup BasicAdd * @{ */ /** * @brief Floating-point vector addition. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. */ void arm_add_f32( float32_t * pSrcA, float32_t * pSrcB, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *pDst++ = (*pSrcA++) + (*pSrcB++); *pDst++ = (*pSrcA++) + (*pSrcB++); *pDst++ = (*pSrcA++) + (*pSrcB++); *pDst++ = (*pSrcA++) + (*pSrcB++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *pDst++ = (*pSrcA++) + (*pSrcB++); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicAdd group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_f32.c
C
lgpl
3,185
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_dot_prod_q15.c * * Description: Q15 dot product. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup dot_prod * @{ */ /** * @brief Dot product of Q15 vectors. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[in] blockSize number of samples in each vector * @param[out] *result output result returned here * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The intermediate multiplications are in 1.15 x 1.15 = 2.30 format and these * results are added to a 64-bit accumulator in 34.30 format. * Nonsaturating additions are used and given that there are 33 guard bits in the accumulator * there is no risk of overflow. * The return result is in 34.30 format. */ void arm_dot_prod_q15( q15_t * pSrcA, q15_t * pSrcB, uint32_t blockSize, q63_t * result) { q63_t sum = 0; /* Temporary result storage */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the result in a temporary buffer. */ sum = __SMLALD(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++, sum); sum = __SMLALD(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++, sum); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the results in a temporary buffer. */ sum = __SMLALD(*pSrcA++, *pSrcB++, sum); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the results in a temporary buffer. */ sum += (q63_t) ((q31_t) * pSrcA++ * *pSrcB++); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ /* Store the result in the destination buffer in 34.30 format */ *result = sum; } /** * @} end of dot_prod group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q15.c
C
lgpl
3,886
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_sub_q15.c * * Description: Q15 vector subtraction. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicSub * @{ */ /** * @brief Q15 vector subtraction. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q15 range [0x8000 0x7FFF] will be saturated. */ void arm_sub_q15( q15_t * pSrcA, q15_t * pSrcB, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A - B */ /* Subtract and then store the results in the destination buffer two samples at a time. */ *__SIMD32(pDst)++ = __QSUB16(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++); *__SIMD32(pDst)++ = __QSUB16(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A - B */ /* Subtract and then store the result in the destination buffer. */ *pDst++ = (q15_t) __QSUB16(*pSrcA++, *pSrcB++); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A - B */ /* Subtract and then store the result in the destination buffer. */ *pDst++ = (q15_t) __SSAT(((q31_t) * pSrcA++ - *pSrcB++), 16); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BasicSub group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q15.c
C
lgpl
3,329
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_abs_f32.c * * Description: Vector absolute value. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" #include <math.h> /** * @ingroup groupMath */ /** * @defgroup BasicAbs Vector Absolute Value * * Computes the absolute value of a vector on an element-by-element basis. * * <pre> * pDst[n] = abs(pSrcA[n]), 0 <= n < blockSize. * </pre> * * The operation can be done in-place by setting the input and output pointers to the same buffer. * There are separate functions for floating-point, Q7, Q15, and Q31 data types. */ /** * @addtogroup BasicAbs * @{ */ /** * @brief Floating-point vector absolute value. * @param[in] *pSrc points to the input buffer * @param[out] *pDst points to the output buffer * @param[in] blockSize number of samples in each vector * @return none. */ void arm_abs_f32( float32_t * pSrc, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = |A| */ /* Calculate absolute and then store the results in the destination buffer. */ *pDst++ = fabsf(*pSrc++); *pDst++ = fabsf(*pSrc++); *pDst++ = fabsf(*pSrc++); *pDst++ = fabsf(*pSrc++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = |A| */ /* Calculate absolute and then store the results in the destination buffer. */ *pDst++ = fabsf(*pSrc++); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicAbs group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_f32.c
C
lgpl
3,226
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_offset_q31.c * * Description: Q31 vector offset. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup offset * @{ */ /** * @brief Adds a constant offset to a Q31 vector. * @param[in] *pSrc points to the input vector * @param[in] offset is the offset to be added * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q31 range [0x80000000 0x7FFFFFFF] are saturated. */ void arm_offset_q31( q31_t * pSrc, q31_t offset, q31_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the results in the destination buffer. */ *pDst++ = __QADD(*pSrc++, offset); *pDst++ = __QADD(*pSrc++, offset); *pDst++ = __QADD(*pSrc++, offset); *pDst++ = __QADD(*pSrc++, offset); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the result in the destination buffer. */ *pDst++ = __QADD(*pSrc++, offset); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the result in the destination buffer. */ *pDst++ = (q31_t) clip_q63_to_q31((q63_t) * pSrc++ + offset); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of offset group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q31.c
C
lgpl
3,306
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_abs_q7.c * * Description: Q7 vector absolute value. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicAbs * @{ */ /** * @brief Q7 vector absolute value. * @param[in] *pSrc points to the input buffer * @param[out] *pDst points to the output buffer * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * The Q7 value -1 (0x80) will be saturated to the maximum allowable positive value 0x7F. */ void arm_abs_q7( q7_t * pSrc, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t in1; /* Input value1 */ q7_t in2; /* Input value2 */ q7_t in3; /* Input value3 */ q7_t in4; /* Input value4 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = |A| */ /* Read 4 inputs */ in1 = *pSrc++; in2 = *pSrc++; in3 = *pSrc++; in4 = *pSrc++; /* Store the Absolute result in the destination buffer by packing the 4 values in single cycle */ *__SIMD32(pDst)++ = __PACKq7(((in1 > 0) ? in1 : __SSAT(-in1, 8)), ((in2 > 0) ? in2 : __SSAT(-in2, 8)), ((in3 > 0) ? in3 : __SSAT(-in3, 8)), ((in4 > 0) ? in4 : __SSAT(-in4, 8))); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = |A| */ /* Read the input */ in1 = *pSrc++; /* Store the Absolute result in the destination buffer */ *pDst++ = (in1 > 0) ? in1 : __SSAT(-in1, 8); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ q7_t in; /* Temporary input varible */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = |A| */ /* Read the input */ in = *pSrc++; /* Store the Absolute result in the destination buffer */ *pDst++ = (in > 0) ? in : __SSAT(-in, 8); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BasicAbs group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q7.c
C
lgpl
3,859
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_add_q15.c * * Description: Q15 vector addition * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicAdd * @{ */ /** * @brief Q15 vector addition. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q15 range [0x8000 0x7FFF] will be saturated. */ void arm_add_q15( q15_t * pSrcA, q15_t * pSrcB, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *__SIMD32(pDst)++ = __QADD16(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++); *__SIMD32(pDst)++ = __QADD16(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *pDst++ = (q15_t) __QADD16(*pSrcA++, *pSrcB++); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *pDst++ = (q15_t) __SSAT(((q31_t) * pSrcA++ + *pSrcB++), 16); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BasicAdd group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q15.c
C
lgpl
3,293
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_add_q7.c * * Description: Q7 vector addition. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicAdd * @{ */ /** * @brief Q7 vector addition. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q7 range [0x80 0x7F] will be saturated. */ void arm_add_q7( q7_t * pSrcA, q7_t * pSrcB, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *__SIMD32(pDst)++ = __QADD8(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *pDst++ = (q7_t) __SSAT(*pSrcA++ + *pSrcB++, 8); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A + B */ /* Add and then store the results in the destination buffer. */ *pDst++ = (q7_t) __SSAT((q15_t) * pSrcA++ + *pSrcB++, 8); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BasicAdd group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_add_q7.c
C
lgpl
3,203
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_shift_q7.c * * Description: Processing function for the Q7 Shifting * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup shift * @{ */ /** * @brief Shifts the elements of a Q7 vector a specified number of bits. * @param[in] *pSrc points to the input vector * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q7 range [0x8 0x7F] will be saturated. */ void arm_shift_q7( q7_t * pSrc, int8_t shiftBits, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ uint8_t sign; /* Sign of shiftBits */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t in1; /* Input value1 */ q7_t in2; /* Input value2 */ q7_t in3; /* Input value3 */ q7_t in4; /* Input value4 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* Getting the sign of shiftBits */ sign = (shiftBits & 0x80); /* If the shift value is positive then do right shift else left shift */ if(sign == 0u) { /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A << shiftBits */ /* Read 4 inputs */ in1 = *pSrc++; in2 = *pSrc++; in3 = *pSrc++; in4 = *pSrc++; /* Store the Shifted result in the destination buffer in single cycle by packing the outputs */ *__SIMD32(pDst)++ = __PACKq7(__SSAT((in1 << shiftBits), 8), __SSAT((in2 << shiftBits), 8), __SSAT((in3 << shiftBits), 8), __SSAT((in4 << shiftBits), 8)); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A << shiftBits */ /* Shift the input and then store the result in the destination buffer. */ *pDst++ = (q7_t) __SSAT((*pSrc++ << shiftBits), 8); /* Decrement the loop counter */ blkCnt--; } } else { /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A >> shiftBits */ /* Read 4 inputs */ in1 = *pSrc++; in2 = *pSrc++; in3 = *pSrc++; in4 = *pSrc++; /* Store the Shifted result in the destination buffer in single cycle by packing the outputs */ *__SIMD32(pDst)++ = __PACKq7((in1 >> -shiftBits), (in2 >> -shiftBits), (in3 >> -shiftBits), (in4 >> -shiftBits)); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A >> shiftBits */ /* Shift the input and then store the result in the destination buffer. */ *pDst++ = (*pSrc++ >> -shiftBits); /* Decrement the loop counter */ blkCnt--; } } #else /* Run the below code for Cortex-M0 */ /* Getting the sign of shiftBits */ sign = (shiftBits & 0x80); /* If the shift value is positive then do right shift else left shift */ if(sign == 0u) { /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A << shiftBits */ /* Shift the input and then store the result in the destination buffer. */ *pDst++ = (q7_t) __SSAT(((q15_t) * pSrc++ << shiftBits), 8); /* Decrement the loop counter */ blkCnt--; } } else { /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A >> shiftBits */ /* Shift the input and then store the result in the destination buffer. */ *pDst++ = (*pSrc++ >> -shiftBits); /* Decrement the loop counter */ blkCnt--; } } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of shift group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q7.c
C
lgpl
5,910
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_negate_f32.c * * Description: Negates floating-point vectors. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup negate Vector Negate * * Negates the elements of a vector. * * <pre> * pDst[n] = -pSrc[n], 0 <= n < blockSize. * </pre> */ /** * @addtogroup negate * @{ */ /** * @brief Negates the elements of a floating-point vector. * @param[in] *pSrc points to the input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. */ void arm_negate_f32( float32_t * pSrc, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = -A */ /* Negate and then store the results in the destination buffer. */ *pDst++ = -*pSrc++; *pDst++ = -*pSrc++; *pDst++ = -*pSrc++; *pDst++ = -*pSrc++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = -A */ /* Negate and then store the results in the destination buffer. */ *pDst++ = -*pSrc++; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of negate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_f32.c
C
lgpl
2,903
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_mult_q15.c * * Description: Q15 vector multiplication. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicMult * @{ */ /** * @brief Q15 vector multiplication * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q15 range [0x8000 0x7FFF] will be saturated. */ void arm_mult_q15( q15_t * pSrcA, q15_t * pSrcB, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /* loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and store the result in the destination buffer */ *pDst++ = (q15_t) __SSAT((((q31_t) (*pSrcA++) * (*pSrcB++)) >> 15), 16); *pDst++ = (q15_t) __SSAT((((q31_t) (*pSrcA++) * (*pSrcB++)) >> 15), 16); *pDst++ = (q15_t) __SSAT((((q31_t) (*pSrcA++) * (*pSrcB++)) >> 15), 16); *pDst++ = (q15_t) __SSAT((((q31_t) (*pSrcA++) * (*pSrcB++)) >> 15), 16); /* Decrement the blockSize loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and store the result in the destination buffer */ *pDst++ = (q15_t) __SSAT((((q31_t) (*pSrcA++) * (*pSrcB++)) >> 15), 16); /* Decrement the blockSize loop counter */ blkCnt--; } } /** * @} end of BasicMult group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q15.c
C
lgpl
3,405
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_dot_prod_q7.c * * Description: Q7 dot product. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup dot_prod * @{ */ /** * @brief Dot product of Q7 vectors. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[in] blockSize number of samples in each vector * @param[out] *result output result returned here * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The intermediate multiplications are in 1.7 x 1.7 = 2.14 format and these * results are added to an accumulator in 18.14 format. * Nonsaturating additions are used and there is no danger of wrap around as long as * the vectors are less than 2^18 elements long. * The return result is in 18.14 format. */ void arm_dot_prod_q7( q7_t * pSrcA, q7_t * pSrcB, uint32_t blockSize, q31_t * result) { uint32_t blkCnt; /* loop counter */ q31_t sum = 0; /* Temporary variables to store output */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t input1, input2; /* Temporary variables to store input */ q15_t in1, in2; /* Temporary variables to store input */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Reading two inputs of SrcA buffer and packing */ in1 = (q15_t) * pSrcA++; in2 = (q15_t) * pSrcA++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* Reading two inputs of SrcB buffer and packing */ in1 = (q15_t) * pSrcB++; in2 = (q15_t) * pSrcB++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Perform Dot product of 2 packed inputs using SMLALD and store the result in a temporary variable. */ sum = __SMLAD(input1, input2, sum); /* Reading two inputs of SrcA buffer and packing */ in1 = (q15_t) * pSrcA++; in2 = (q15_t) * pSrcA++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* Reading two inputs of SrcB buffer and packing */ in1 = (q15_t) * pSrcB++; in2 = (q15_t) * pSrcB++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Perform Dot product of 2 packed inputs using SMLALD and store the result in a temporary variable. */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Dot product and then store the results in a temporary buffer. */ sum = __SMLAD(*pSrcA++, *pSrcB++, sum); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Dot product and then store the results in a temporary buffer. */ sum += (q31_t) ((q15_t) * pSrcA++ * *pSrcB++); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ /* Store the result in the destination buffer in 18.14 format */ *result = sum; } /** * @} end of dot_prod group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q7.c
C
lgpl
4,975
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_shift_q31.c * * Description: Shifts the elements of a Q31 vector by a specified number of bits. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup shift Vector Shift * * Shifts the elements of a fixed-point vector by a specified number of bits. * There are separate functions for Q7, Q15, and Q31 data types. * The underlying algorithm used is: * * <pre> * pDst[n] = pSrc[n] << shift, 0 <= n < blockSize. * </pre> * * If <code>shift</code> is positive then the elements of the vector are shifted to the left. * If <code>shift</code> is negative then the elements of the vector are shifted to the right. */ /** * @addtogroup shift * @{ */ /** * @brief Shifts the elements of a Q31 vector a specified number of bits. * @param[in] *pSrc points to the input vector * @param[in] shiftBits number of bits to shift. A positive value shifts left; a negative value shifts right. * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q31 range [0x80000000 0x7FFFFFFF] will be saturated. */ void arm_shift_q31( q31_t * pSrc, int8_t shiftBits, q31_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ uint8_t sign; /* Sign of shiftBits */ /* Getting the sign of shiftBits */ sign = (shiftBits & 0x80); #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A (>> or <<) shiftBits */ /* Shift the input and then store the results in the destination buffer. */ *pDst++ = (sign == 0u) ? clip_q63_to_q31((q63_t) * pSrc++ << shiftBits) : (*pSrc++ >> -shiftBits); *pDst++ = (sign == 0u) ? clip_q63_to_q31((q63_t) * pSrc++ << shiftBits) : (*pSrc++ >> -shiftBits); *pDst++ = (sign == 0u) ? clip_q63_to_q31((q63_t) * pSrc++ << shiftBits) : (*pSrc++ >> -shiftBits); *pDst++ = (sign == 0u) ? clip_q63_to_q31((q63_t) * pSrc++ << shiftBits) : (*pSrc++ >> -shiftBits); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A (>> or <<) shiftBits */ /* Shift the input and then store the result in the destination buffer. */ *pDst++ = (sign == 0u) ? clip_q63_to_q31((q63_t) * pSrc++ << shiftBits) : (*pSrc++ >> -shiftBits); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of shift group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_shift_q31.c
C
lgpl
4,279
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_mult_q7.c * * Description: Q7 vector multiplication. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 DP * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicMult * @{ */ /** * @brief Q7 vector multiplication * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q7 range [0x80 0x7F] will be saturated. */ void arm_mult_q7( q7_t * pSrcA, q7_t * pSrcB, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t out1, out2, out3, out4; /* Temporary variables to store the product */ /* loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and store the results in temporary variables */ out1 = (q7_t) (((q15_t) (*pSrcA++) * (*pSrcB++)) >> 7); out2 = (q7_t) (((q15_t) (*pSrcA++) * (*pSrcB++)) >> 7); out3 = (q7_t) (((q15_t) (*pSrcA++) * (*pSrcB++)) >> 7); out4 = (q7_t) (((q15_t) (*pSrcA++) * (*pSrcB++)) >> 7); /* Store the results of 4 inputs in the destination buffer in single cycle by packing */ *__SIMD32(pDst)++ = __PACKq7(out1, out2, out3, out4); /* Decrement the blockSize loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and store the result in the destination buffer */ *pDst++ = (q7_t) (((q15_t) (*pSrcA++) * (*pSrcB++)) >> 7); /* Decrement the blockSize loop counter */ blkCnt--; } } /** * @} end of BasicMult group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q7.c
C
lgpl
3,630
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_mult_f32.c * * Description: Floating-point vector multiplication. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup BasicMult Vector Multiplication * * Element-by-element multiplication of two vectors. * * <pre> * pDst[n] = pSrcA[n] * pSrcB[n], 0 <= n < blockSize. * </pre> * * There are separate functions for floating-point, Q7, Q15, and Q31 data types. */ /** * @addtogroup BasicMult * @{ */ /** * @brief Floating-point vector multiplication. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. */ void arm_mult_f32( float32_t * pSrcA, float32_t * pSrcB, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /* loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and store the results in output buffer */ *pDst++ = (*pSrcA++) * (*pSrcB++); *pDst++ = (*pSrcA++) * (*pSrcB++); *pDst++ = (*pSrcA++) * (*pSrcB++); *pDst++ = (*pSrcA++) * (*pSrcB++); /* Decrement the blockSize loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and store the results in output buffer */ *pDst++ = (*pSrcA++) * (*pSrcB++); /* Decrement the blockSize loop counter */ blkCnt--; } } /** * @} end of BasicMult group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_f32.c
C
lgpl
3,345
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_abs_q15.c * * Description: Q15 vector absolute value. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicAbs * @{ */ /** * @brief Q15 vector absolute value. * @param[in] *pSrc points to the input buffer * @param[out] *pDst points to the output buffer * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * The Q15 value -1 (0x8000) will be saturated to the maximum allowable positive value 0x7FFF. */ void arm_abs_q15( q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t in1; /* Input value1 */ q15_t in2; /* Input value2 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = |A| */ /* Read two inputs */ in1 = *pSrc++; in2 = *pSrc++; /* Store the Absolute result in the destination buffer by packing the two values, in a single cycle */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(((in1 > 0) ? in1 : __SSAT(-in1, 16)), ((in2 > 0) ? in2 : __SSAT(-in2, 16)), 16); #else *__SIMD32(pDst)++ = __PKHBT(((in2 > 0) ? in2 : __SSAT(-in2, 16)), ((in1 > 0) ? in1 : __SSAT(-in1, 16)), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ in1 = *pSrc++; in2 = *pSrc++; #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(((in1 > 0) ? in1 : __SSAT(-in1, 16)), ((in2 > 0) ? in2 : __SSAT(-in2, 16)), 16); #else *__SIMD32(pDst)++ = __PKHBT(((in2 > 0) ? in2 : __SSAT(-in2, 16)), ((in1 > 0) ? in1 : __SSAT(-in1, 16)), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = |A| */ /* Read the input */ in1 = *pSrc++; /* Calculate absolute value of input and then store the result in the destination buffer. */ *pDst++ = (in1 > 0) ? in1 : __SSAT(-in1, 16); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ q15_t in; /* Temporary input variable */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = |A| */ /* Read the input */ in = *pSrc++; /* Calculate absolute value of input and then store the result in the destination buffer. */ *pDst++ = (in > 0) ? in : __SSAT(-in, 16); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BasicAbs group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_abs_q15.c
C
lgpl
4,310
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_negate_q15.c * * Description: Negates Q15 vectors. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup negate * @{ */ /** * @brief Negates the elements of a Q15 vector. * @param[in] *pSrc points to the input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * The Q15 value -1 (0x8000) will be saturated to the maximum allowable positive value 0x7FFF. */ void arm_negate_q15( q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t in1, in2; /* Temporary variables */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = -A */ /* Read two inputs */ in1 = *pSrc++; in2 = *pSrc++; /* Negate and then store the results in the destination buffer by packing. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(__SSAT(-in1, 16), __SSAT(-in2, 16), 16); #else *__SIMD32(pDst)++ = __PKHBT(__SSAT(-in2, 16), __SSAT(-in1, 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ in1 = *pSrc++; in2 = *pSrc++; #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(__SSAT(-in1, 16), __SSAT(-in2, 16), 16); #else *__SIMD32(pDst)++ = __PKHBT(__SSAT(-in2, 16), __SSAT(-in1, 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = -A */ /* Negate and then store the result in the destination buffer. */ *pDst++ = __SSAT(-*pSrc++, 16); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of negate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_negate_q15.c
C
lgpl
3,487
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_scale_f32.c * * Description: Multiplies a floating-point vector by a scalar. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @defgroup scale Vector Scale * * Multiply a vector by a scalar value. For floating-point data, the algorithm used is: * * <pre> * pDst[n] = pSrc[n] * scale, 0 <= n < blockSize. * </pre> * * In the fixed-point Q7, Q15, and Q31 functions, <code>scale</code> is represented by * a fractional multiplication <code>scaleFract</code> and an arithmetic shift <code>shift</code>. * The shift allows the gain of the scaling operation to exceed 1.0. * The algorithm used with fixed-point data is: * * <pre> * pDst[n] = (pSrc[n] * scaleFract) << shift, 0 <= n < blockSize. * </pre> * * The overall scale factor applied to the fixed-point data is * <pre> * scale = scaleFract * 2^shift. * </pre> */ /** * @addtogroup scale * @{ */ /** * @brief Multiplies a floating-point vector by a scalar. * @param[in] *pSrc points to the input vector * @param[in] scale scale factor to be applied * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. */ void arm_scale_f32( float32_t * pSrc, float32_t scale, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A * scale */ /* Scale the input and then store the results in the destination buffer. */ *pDst++ = (*pSrc++) * scale; *pDst++ = (*pSrc++) * scale; *pDst++ = (*pSrc++) * scale; *pDst++ = (*pSrc++) * scale; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A * scale */ /* Scale the input and then store the result in the destination buffer. */ *pDst++ = (*pSrc++) * scale; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of scale group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_f32.c
C
lgpl
3,714
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_scale_q7.c * * Description: Multiplies a Q7 vector by a scalar. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup scale * @{ */ /** * @brief Multiplies a Q7 vector by a scalar. * @param[in] *pSrc points to the input vector * @param[in] scaleFract fractional portion of the scale value * @param[in] shift number of bits to shift the result by * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The input data <code>*pSrc</code> and <code>scaleFract</code> are in 1.7 format. * These are multiplied to yield a 2.14 intermediate result and this is shifted with saturation to 1.7 format. */ void arm_scale_q7( q7_t * pSrc, q7_t scaleFract, int8_t shift, q7_t * pDst, uint32_t blockSize) { int8_t kShift = 7 - shift; /* shift to apply after scaling */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t in1, in2, in3, in4, out1, out2, out3, out4; /* Temporary variables to store input & output */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Reading 4 inputs from memory */ in1 = *pSrc++; in2 = *pSrc++; in3 = *pSrc++; in4 = *pSrc++; /* C = A * scale */ /* Scale the inputs and then store the results in the temporary variables. */ out1 = (q7_t) (__SSAT(((in1) * scaleFract) >> kShift, 8)); out2 = (q7_t) (__SSAT(((in2) * scaleFract) >> kShift, 8)); out3 = (q7_t) (__SSAT(((in3) * scaleFract) >> kShift, 8)); out4 = (q7_t) (__SSAT(((in4) * scaleFract) >> kShift, 8)); /* Packing the individual outputs into 32bit and storing in * destination buffer in single write */ *__SIMD32(pDst)++ = __PACKq7(out1, out2, out3, out4); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A * scale */ /* Scale the input and then store the result in the destination buffer. */ *pDst++ = (q7_t) (__SSAT(((*pSrc++) * scaleFract) >> kShift, 8)); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A * scale */ /* Scale the input and then store the result in the destination buffer. */ *pDst++ = (q7_t) (__SSAT((((q15_t) * pSrc++ * scaleFract) >> kShift), 8)); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of scale group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_scale_q7.c
C
lgpl
4,143
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_mult_q31.c * * Description: Q31 vector multiplication. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicMult * @{ */ /** * @brief Q31 vector multiplication. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q31 range[0x80000000 0x7FFFFFFF] will be saturated. */ void arm_mult_q31( q31_t * pSrcA, q31_t * pSrcB, q31_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /* loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and then store the results in the destination buffer. */ *pDst++ = (q31_t) clip_q63_to_q31(((q63_t) (*pSrcA++) * (*pSrcB++)) >> 31); *pDst++ = (q31_t) clip_q63_to_q31(((q63_t) (*pSrcA++) * (*pSrcB++)) >> 31); *pDst++ = (q31_t) clip_q63_to_q31(((q63_t) (*pSrcA++) * (*pSrcB++)) >> 31); *pDst++ = (q31_t) clip_q63_to_q31(((q63_t) (*pSrcA++) * (*pSrcB++)) >> 31); /* Decrement the blockSize loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A * B */ /* Multiply the inputs and then store the results in the destination buffer. */ *pDst++ = (q31_t) clip_q63_to_q31(((q63_t) (*pSrcA++) * (*pSrcB++)) >> 31); /* Decrement the blockSize loop counter */ blkCnt--; } } /** * @} end of BasicMult group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_mult_q31.c
C
lgpl
3,461
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_offset_q7.c * * Description: Q7 vector offset. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup offset * @{ */ /** * @brief Adds a constant offset to a Q7 vector. * @param[in] *pSrc points to the input vector * @param[in] offset is the offset to be added * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in the vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q7 range [0x80 0x7F] are saturated. */ void arm_offset_q7( q7_t * pSrc, q7_t offset, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t offset_packed; /* Offset packed to 32 bit */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* Offset is packed to 32 bit in order to use SIMD32 for addition */ offset_packed = __PACKq7(offset, offset, offset, offset); /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the results in the destination bufferfor 4 samples at a time. */ *__SIMD32(pDst)++ = __QADD8(*__SIMD32(pSrc)++, offset_packed); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the result in the destination buffer. */ *pDst++ = (q7_t) __SSAT(*pSrc++ + offset, 8); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A + offset */ /* Add offset and then store the result in the destination buffer. */ *pDst++ = (q7_t) __SSAT((q15_t) * pSrc++ + offset, 8); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of offset group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_offset_q7.c
C
lgpl
3,436
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_dot_prod_q31.c * * Description: Q31 dot product. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup dot_prod * @{ */ /** * @brief Dot product of Q31 vectors. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[in] blockSize number of samples in each vector * @param[out] *result output result returned here * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The intermediate multiplications are in 1.31 x 1.31 = 2.62 format and these * are truncated to 2.48 format by discarding the lower 14 bits. * The 2.48 result is then added without saturation to a 64-bit accumulator in 16.48 format. * There are 15 guard bits in the accumulator and there is no risk of overflow as long as * the length of the vectors is less than 2^16 elements. * The return result is in 16.48 format. */ void arm_dot_prod_q31( q31_t * pSrcA, q31_t * pSrcB, uint32_t blockSize, q63_t * result) { q63_t sum = 0; /* Temporary result storage */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the result in a temporary buffer. */ sum += ((q63_t) * pSrcA++ * *pSrcB++) >> 14u; sum += ((q63_t) * pSrcA++ * *pSrcB++) >> 14u; sum += ((q63_t) * pSrcA++ * *pSrcB++) >> 14u; sum += ((q63_t) * pSrcA++ * *pSrcB++) >> 14u; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A[0]* B[0] + A[1]* B[1] + A[2]* B[2] + .....+ A[blockSize-1]* B[blockSize-1] */ /* Calculate dot product and then store the result in a temporary buffer. */ sum += ((q63_t) * pSrcA++ * *pSrcB++) >> 14u; /* Decrement the loop counter */ blkCnt--; } /* Store the result in the destination buffer in 16.48 format */ *result = sum; } /** * @} end of dot_prod group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_dot_prod_q31.c
C
lgpl
3,764
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_sub_q7.c * * Description: Q7 vector subtraction. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupMath */ /** * @addtogroup BasicSub * @{ */ /** * @brief Q7 vector subtraction. * @param[in] *pSrcA points to the first input vector * @param[in] *pSrcB points to the second input vector * @param[out] *pDst points to the output vector * @param[in] blockSize number of samples in each vector * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q7 range [0x80 0x7F] will be saturated. */ void arm_sub_q7( q7_t * pSrcA, q7_t * pSrcB, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A - B */ /* Subtract and then store the results in the destination buffer 4 samples at a time. */ *__SIMD32(pDst)++ = __QSUB8(*__SIMD32(pSrcA)++, *__SIMD32(pSrcB)++); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* C = A - B */ /* Subtract and then store the result in the destination buffer. */ *pDst++ = __SSAT(*pSrcA++ - *pSrcB++, 8); /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Initialize blkCnt with number of samples */ blkCnt = blockSize; while(blkCnt > 0u) { /* C = A - B */ /* Subtract and then store the result in the destination buffer. */ *pDst++ = (q7_t) __SSAT((q15_t) * pSrcA++ - *pSrcB++, 8); /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BasicSub group */
1137519-player
lib/CMSIS/DSP_Lib/Source/BasicMathFunctions/arm_sub_q7.c
C
lgpl
3,229
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q31_to_float.c * * Description: Converts the elements of the Q31 vector to floating-point vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @defgroup q31_to_x Convert 32-bit Integer value */ /** * @addtogroup q31_to_x * @{ */ /** * @brief Converts the elements of the Q31 vector to floating-point vector. * @param[in] *pSrc points to the Q31 input vector * @param[out] *pDst points to the floating-point output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (float32_t) pSrc[n] / 2147483648; 0 <= n < blockSize. * </pre> * */ void arm_q31_to_float( q31_t * pSrc, float32_t * pDst, uint32_t blockSize) { q31_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (float32_t) A / 2147483648 */ /* convert from q31 to float and then store the results in the destination buffer */ *pDst++ = ((float32_t) * pIn++ / 2147483648.0f); *pDst++ = ((float32_t) * pIn++ / 2147483648.0f); *pDst++ = ((float32_t) * pIn++ / 2147483648.0f); *pDst++ = ((float32_t) * pIn++ / 2147483648.0f); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (float32_t) A / 2147483648 */ /* convert from q31 to float and then store the results in the destination buffer */ *pDst++ = ((float32_t) * pIn++ / 2147483648.0f); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q31_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_float.c
C
lgpl
3,316
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_float_to_q15.c * * Description: Converts the elements of the floating-point vector to Q15 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup float_to_x * @{ */ /** * @brief Converts the elements of the floating-point vector to Q15 vector. * @param[in] *pSrc points to the floating-point input vector * @param[out] *pDst points to the Q15 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * \par * The equation used for the conversion process is: * <pre> * pDst[n] = (q15_t)(pSrc[n] * 32768); 0 <= n < blockSize. * </pre> * \par Scaling and Overflow Behavior: * \par * The function uses saturating arithmetic. * Results outside of the allowable Q15 range [0x8000 0x7FFF] will be saturated. * \note * In order to apply rounding, the library should be rebuilt with the ROUNDING macro * defined in the preprocessor section of project options. * */ void arm_float_to_q15( float32_t * pSrc, q15_t * pDst, uint32_t blockSize) { float32_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifdef ARM_MATH_ROUNDING float32_t in; #endif /* #ifdef ARM_MATH_ROUNDING */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 32768 */ /* convert from float to q15 and then store the results in the destination buffer */ in = *pIn++; in = (in * 32768.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q15_t) (__SSAT((q31_t) (in), 16)); in = *pIn++; in = (in * 32768.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q15_t) (__SSAT((q31_t) (in), 16)); in = *pIn++; in = (in * 32768.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q15_t) (__SSAT((q31_t) (in), 16)); in = *pIn++; in = (in * 32768.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q15_t) (__SSAT((q31_t) (in), 16)); #else /* C = A * 32768 */ /* convert from float to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) __SSAT((q31_t) (*pIn++ * 32768.0f), 16); *pDst++ = (q15_t) __SSAT((q31_t) (*pIn++ * 32768.0f), 16); *pDst++ = (q15_t) __SSAT((q31_t) (*pIn++ * 32768.0f), 16); *pDst++ = (q15_t) __SSAT((q31_t) (*pIn++ * 32768.0f), 16); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 32768 */ /* convert from float to q15 and then store the results in the destination buffer */ in = *pIn++; in = (in * 32768.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q15_t) (__SSAT((q31_t) (in), 16)); #else /* C = A * 32768 */ /* convert from float to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) __SSAT((q31_t) (*pIn++ * 32768.0f), 16); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 32768 */ /* convert from float to q15 and then store the results in the destination buffer */ in = *pIn++; in = (in * 32768.0f); in += in > 0 ? 0.5f : -0.5f; *pDst++ = (q15_t) (__SSAT((q31_t) (in), 16)); #else /* C = A * 32768 */ /* convert from float to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) __SSAT((q31_t) (*pIn++ * 32768.0f), 16); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of float_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q15.c
C
lgpl
5,375
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_copy_q7.c * * Description: Copies the elements of a Q7 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup copy * @{ */ /** * @brief Copies the elements of a Q7 vector. * @param[in] *pSrc points to input vector * @param[out] *pDst points to output vector * @param[in] blockSize length of the input vector * @return none. * */ void arm_copy_q7( q7_t * pSrc, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the results in the destination buffer */ /* 4 samples are copied and stored at a time using SIMD */ *__SIMD32(pDst)++ = *__SIMD32(pSrc)++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the results in the destination buffer */ *pDst++ = *pSrc++; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicCopy group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q7.c
C
lgpl
2,691
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q15_to_float.c * * Description: Converts the elements of the Q15 vector to floating-point vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @defgroup q15_to_x Convert 16-bit Integer value */ /** * @addtogroup q15_to_x * @{ */ /** * @brief Converts the elements of the Q15 vector to floating-point vector. * @param[in] *pSrc points to the Q15 input vector * @param[out] *pDst points to the floating-point output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (float32_t) pSrc[n] / 32768; 0 <= n < blockSize. * </pre> * */ void arm_q15_to_float( q15_t * pSrc, float32_t * pDst, uint32_t blockSize) { q15_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (float32_t) A / 32768 */ /* convert from q15 to float and then store the results in the destination buffer */ *pDst++ = ((float32_t) * pIn++ / 32768.0f); *pDst++ = ((float32_t) * pIn++ / 32768.0f); *pDst++ = ((float32_t) * pIn++ / 32768.0f); *pDst++ = ((float32_t) * pIn++ / 32768.0f); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (float32_t) A / 32768 */ /* convert from q15 to float and then store the results in the destination buffer */ *pDst++ = ((float32_t) * pIn++ / 32768.0f); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q15_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_float.c
C
lgpl
3,283
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_copy_q31.c * * Description: Copies the elements of a Q31 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup copy * @{ */ /** * @brief Copies the elements of a Q31 vector. * @param[in] *pSrc points to input vector * @param[out] *pDst points to output vector * @param[in] blockSize length of the input vector * @return none. * */ void arm_copy_q31( q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the values in the destination buffer */ *pDst++ = *pSrc++; *pDst++ = *pSrc++; *pDst++ = *pSrc++; *pDst++ = *pSrc++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the value in the destination buffer */ *pDst++ = *pSrc++; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicCopy group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q31.c
C
lgpl
2,682
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_float_to_q31.c * * Description: Converts the elements of the floating-point vector to Q31 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @defgroup float_to_x Convert 32-bit floating point value */ /** * @addtogroup float_to_x * @{ */ /** * @brief Converts the elements of the floating-point vector to Q31 vector. * @param[in] *pSrc points to the floating-point input vector * @param[out] *pDst points to the Q31 output vector * @param[in] blockSize length of the input vector * @return none. * *\par Description: * \par * The equation used for the conversion process is: * * <pre> * pDst[n] = (q31_t)(pSrc[n] * 2147483648); 0 <= n < blockSize. * </pre> * <b>Scaling and Overflow Behavior:</b> * \par * The function uses saturating arithmetic. * Results outside of the allowable Q31 range[0x80000000 0x7FFFFFFF] will be saturated. * * \note In order to apply rounding, the library should be rebuilt with the ROUNDING macro * defined in the preprocessor section of project options. */ void arm_float_to_q31( float32_t * pSrc, q31_t * pDst, uint32_t blockSize) { float32_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifdef ARM_MATH_ROUNDING float32_t in; #endif /* #ifdef ARM_MATH_ROUNDING */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 32768 */ /* convert from float to Q31 and then store the results in the destination buffer */ in = *pIn++; in = (in * 2147483648.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = clip_q63_to_q31((q63_t) (in)); in = *pIn++; in = (in * 2147483648.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = clip_q63_to_q31((q63_t) (in)); in = *pIn++; in = (in * 2147483648.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = clip_q63_to_q31((q63_t) (in)); in = *pIn++; in = (in * 2147483648.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = clip_q63_to_q31((q63_t) (in)); #else /* C = A * 2147483648 */ /* convert from float to Q31 and then store the results in the destination buffer */ *pDst++ = clip_q63_to_q31((q63_t) (*pIn++ * 2147483648.0f)); *pDst++ = clip_q63_to_q31((q63_t) (*pIn++ * 2147483648.0f)); *pDst++ = clip_q63_to_q31((q63_t) (*pIn++ * 2147483648.0f)); *pDst++ = clip_q63_to_q31((q63_t) (*pIn++ * 2147483648.0f)); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 2147483648 */ /* convert from float to Q31 and then store the results in the destination buffer */ in = *pIn++; in = (in * 2147483648.0f); in += in > 0 ? 0.5 : -0.5; *pDst++ = clip_q63_to_q31((q63_t) (in)); #else /* C = A * 2147483648 */ /* convert from float to Q31 and then store the results in the destination buffer */ *pDst++ = clip_q63_to_q31((q63_t) (*pIn++ * 2147483648.0f)); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 2147483648 */ /* convert from float to Q31 and then store the results in the destination buffer */ in = *pIn++; in = (in * 2147483648.0f); in += in > 0 ? 0.5f : -0.5f; *pDst++ = clip_q63_to_q31((q63_t) (in)); #else /* C = A * 2147483648 */ /* convert from float to Q31 and then store the results in the destination buffer */ *pDst++ = clip_q63_to_q31((q63_t) (*pIn++ * 2147483648.0f)); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of float_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q31.c
C
lgpl
5,510
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fill_q31.c * * Description: Fills a constant value into a Q31 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup Fill * @{ */ /** * @brief Fills a constant value into a Q31 vector. * @param[in] value input value to be filled * @param[out] *pDst points to output vector * @param[in] blockSize length of the output vector * @return none. * */ void arm_fill_q31( q31_t value, q31_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *pDst++ = value; *pDst++ = value; *pDst++ = value; *pDst++ = value; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *pDst++ = value; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of Fill group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q31.c
C
lgpl
2,654
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_copy_q15.c * * Description: Copies the elements of a Q15 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup copy * @{ */ /** * @brief Copies the elements of a Q15 vector. * @param[in] *pSrc points to input vector * @param[out] *pDst points to output vector * @param[in] blockSize length of the input vector * @return none. * */ void arm_copy_q15( q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t in1, in2; /* Temporary variables */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A */ /* Read two inputs */ in1 = *pSrc++; in2 = *pSrc++; #ifndef ARM_MATH_BIG_ENDIAN /* Store the values in the destination buffer by packing the two inputs */ *__SIMD32(pDst)++ = __PKHBT(in1, in2, 16); in1 = *pSrc++; in2 = *pSrc++; *__SIMD32(pDst)++ = __PKHBT(in1, in2, 16); #else /* Store the values in the destination buffer by packing the two inputs */ *__SIMD32(pDst)++ = __PKHBT(in2, in1, 16); in1 = *pSrc++; in2 = *pSrc++; *__SIMD32(pDst)++ = __PKHBT(in2, in1, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the value in the destination buffer */ *pDst++ = *pSrc++; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicCopy group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_q15.c
C
lgpl
3,198
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fill_f32.c * * Description: Fills a constant value into a floating-point vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @defgroup Fill Vector Fill * * Fills the destination vector with a constant value. * * <pre> * pDst[n] = value; 0 <= n < blockSize. * </pre> * * There are separate functions for floating point, Q31, Q15, and Q7 data types. */ /** * @addtogroup Fill * @{ */ /** * @brief Fills a constant value into a floating-point vector. * @param[in] value input value to be filled * @param[out] *pDst points to output vector * @param[in] blockSize length of the output vector * @return none. * */ void arm_fill_f32( float32_t value, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *pDst++ = value; *pDst++ = value; *pDst++ = value; *pDst++ = value; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *pDst++ = value; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of Fill group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_f32.c
C
lgpl
2,983
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q31_to_q7.c * * Description: Converts the elements of the Q31 vector to Q7 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup q31_to_x * @{ */ /** * @brief Converts the elements of the Q31 vector to Q7 vector. * @param[in] *pSrc points to the Q31 input vector * @param[out] *pDst points to the Q7 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (q7_t) pSrc[n] >> 24; 0 <= n < blockSize. * </pre> * */ void arm_q31_to_q7( q31_t * pSrc, q7_t * pDst, uint32_t blockSize) { q31_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (q7_t) A >> 24 */ /* convert from q31 to q7 and then store the results in the destination buffer */ *pDst++ = (q7_t) (*pIn++ >> 24); *pDst++ = (q7_t) (*pIn++ >> 24); *pDst++ = (q7_t) (*pIn++ >> 24); *pDst++ = (q7_t) (*pIn++ >> 24); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (q7_t) A >> 24 */ /* convert from q31 to q7 and then store the results in the destination buffer */ *pDst++ = (q7_t) (*pIn++ >> 24); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q31_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_q7.c
C
lgpl
3,075
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_copy_f32.c * * Description: Copies the elements of a floating-point vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @defgroup copy Vector Copy * * Copies sample by sample from source vector to destination vector. * * <pre> * pDst[n] = pSrc[n]; 0 <= n < blockSize. * </pre> * * There are separate functions for floating point, Q31, Q15, and Q7 data types. */ /** * @addtogroup copy * @{ */ /** * @brief Copies the elements of a floating-point vector. * @param[in] *pSrc points to input vector * @param[out] *pDst points to output vector * @param[in] blockSize length of the input vector * @return none. * */ void arm_copy_f32( float32_t * pSrc, float32_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the results in the destination buffer */ *pDst++ = *pSrc++; *pDst++ = *pSrc++; *pDst++ = *pSrc++; *pDst++ = *pSrc++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = A */ /* Copy and then store the results in the destination buffer */ *pDst++ = *pSrc++; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of BasicCopy group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_copy_f32.c
C
lgpl
3,032
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q15_to_q7.c * * Description: Converts the elements of the Q15 vector to Q7 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup q15_to_x * @{ */ /** * @brief Converts the elements of the Q15 vector to Q7 vector. * @param[in] *pSrc points to the Q15 input vector * @param[out] *pDst points to the Q7 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (q7_t) pSrc[n] >> 8; 0 <= n < blockSize. * </pre> * */ void arm_q15_to_q7( q15_t * pSrc, q7_t * pDst, uint32_t blockSize) { q15_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (q7_t) A >> 8 */ /* convert from q15 to q7 and then store the results in the destination buffer */ *pDst++ = (q7_t) (*pIn++ >> 8); *pDst++ = (q7_t) (*pIn++ >> 8); *pDst++ = (q7_t) (*pIn++ >> 8); *pDst++ = (q7_t) (*pIn++ >> 8); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (q7_t) A >> 8 */ /* convert from q15 to q7 and then store the results in the destination buffer */ *pDst++ = (q7_t) (*pIn++ >> 8); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q15_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_q7.c
C
lgpl
3,066
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q31_to_q15.c * * Description: Converts the elements of the Q31 vector to Q15 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup q31_to_x * @{ */ /** * @brief Converts the elements of the Q31 vector to Q15 vector. * @param[in] *pSrc points to the Q31 input vector * @param[out] *pDst points to the Q15 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (q15_t) pSrc[n] >> 16; 0 <= n < blockSize. * </pre> * */ void arm_q31_to_q15( q31_t * pSrc, q15_t * pDst, uint32_t blockSize) { q31_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (q15_t) A >> 16 */ /* convert from q31 to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) (*pIn++ >> 16); *pDst++ = (q15_t) (*pIn++ >> 16); *pDst++ = (q15_t) (*pIn++ >> 16); *pDst++ = (q15_t) (*pIn++ >> 16); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (q15_t) A >> 16 */ /* convert from q31 to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) (*pIn++ >> 16); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q31_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q31_to_q15.c
C
lgpl
3,091
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q15_to_q31.c * * Description: Converts the elements of the Q15 vector to Q31 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup q15_to_x * @{ */ /** * @brief Converts the elements of the Q15 vector to Q31 vector. * @param[in] *pSrc points to the Q15 input vector * @param[out] *pDst points to the Q31 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (q31_t) pSrc[n] << 16; 0 <= n < blockSize. * </pre> * */ void arm_q15_to_q31( q15_t * pSrc, q31_t * pDst, uint32_t blockSize) { q15_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (q31_t)A << 16 */ /* convert from q15 to q31 and then store the results in the destination buffer */ *pDst++ = (q31_t) * pIn++ << 16; *pDst++ = (q31_t) * pIn++ << 16; *pDst++ = (q31_t) * pIn++ << 16; *pDst++ = (q31_t) * pIn++ << 16; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (q31_t)A << 16 */ /* convert from q15 to q31 and then store the results in the destination buffer */ *pDst++ = (q31_t) * pIn++ << 16; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q15_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q15_to_q31.c
C
lgpl
3,081
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_float_to_q7.c * * Description: Converts the elements of the floating-point vector to Q7 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup float_to_x * @{ */ /** * @brief Converts the elements of the floating-point vector to Q7 vector. * @param[in] *pSrc points to the floating-point input vector * @param[out] *pDst points to the Q7 output vector * @param[in] blockSize length of the input vector * @return none. * *\par Description: * \par * The equation used for the conversion process is: * <pre> * pDst[n] = (q7_t)(pSrc[n] * 128); 0 <= n < blockSize. * </pre> * \par Scaling and Overflow Behavior: * \par * The function uses saturating arithmetic. * Results outside of the allowable Q7 range [0x80 0x7F] will be saturated. * \note * In order to apply rounding, the library should be rebuilt with the ROUNDING macro * defined in the preprocessor section of project options. */ void arm_float_to_q7( float32_t * pSrc, q7_t * pDst, uint32_t blockSize) { float32_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifdef ARM_MATH_ROUNDING float32_t in; #endif /* #ifdef ARM_MATH_ROUNDING */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 128 */ /* convert from float to q7 and then store the results in the destination buffer */ in = *pIn++; in = (in * 128); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q7_t) (__SSAT((q15_t) (in), 8)); in = *pIn++; in = (in * 128); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q7_t) (__SSAT((q15_t) (in), 8)); in = *pIn++; in = (in * 128); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q7_t) (__SSAT((q15_t) (in), 8)); in = *pIn++; in = (in * 128); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q7_t) (__SSAT((q15_t) (in), 8)); #else /* C = A * 128 */ /* convert from float to q7 and then store the results in the destination buffer */ *pDst++ = __SSAT((q31_t) (*pIn++ * 128.0f), 8); *pDst++ = __SSAT((q31_t) (*pIn++ * 128.0f), 8); *pDst++ = __SSAT((q31_t) (*pIn++ * 128.0f), 8); *pDst++ = __SSAT((q31_t) (*pIn++ * 128.0f), 8); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 128 */ /* convert from float to q7 and then store the results in the destination buffer */ in = *pIn++; in = (in * 128); in += in > 0 ? 0.5 : -0.5; *pDst++ = (q7_t) (__SSAT((q15_t) (in), 8)); #else /* C = A * 128 */ /* convert from float to q7 and then store the results in the destination buffer */ *pDst++ = __SSAT((q31_t) (*pIn++ * 128.0f), 8); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; while(blkCnt > 0u) { #ifdef ARM_MATH_ROUNDING /* C = A * 128 */ /* convert from float to q7 and then store the results in the destination buffer */ in = *pIn++; in = (in * 128.0f); in += in > 0 ? 0.5f : -0.5f; *pDst++ = (q7_t) (__SSAT((q31_t) (in), 8)); #else /* C = A * 128 */ /* convert from float to q7 and then store the results in the destination buffer */ *pDst++ = (q7_t) __SSAT((q31_t) (*pIn++ * 128.0f), 8); #endif /* #ifdef ARM_MATH_ROUNDING */ /* Decrement the loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of float_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_float_to_q7.c
C
lgpl
5,236
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q7_to_q31.c * * Description: Converts the elements of the Q7 vector to Q31 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup q7_to_x * @{ */ /** * @brief Converts the elements of the Q7 vector to Q31 vector. * @param[in] *pSrc points to the Q7 input vector * @param[out] *pDst points to the Q31 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (q31_t) pSrc[n] << 24; 0 <= n < blockSize. * </pre> * */ void arm_q7_to_q31( q7_t * pSrc, q31_t * pDst, uint32_t blockSize) { q7_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (q31_t) A << 24 */ /* convert from q7 to q31 and then store the results in the destination buffer */ *pDst++ = (q31_t) * pIn++ << 24; *pDst++ = (q31_t) * pIn++ << 24; *pDst++ = (q31_t) * pIn++ << 24; *pDst++ = (q31_t) * pIn++ << 24; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (q31_t) A << 24 */ /* convert from q7 to q31 and then store the results in the destination buffer */ *pDst++ = (q31_t) * pIn++ << 24; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q7_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_q31.c
C
lgpl
3,073
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q7_to_float.c * * Description: Converts the elements of the Q7 vector to floating-point vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @defgroup q7_to_x Convert 8-bit Integer value */ /** * @addtogroup q7_to_x * @{ */ /** * @brief Converts the elements of the Q7 vector to floating-point vector. * @param[in] *pSrc points to the Q7 input vector * @param[out] *pDst points to the floating-point output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (float32_t) pSrc[n] / 128; 0 <= n < blockSize. * </pre> * */ void arm_q7_to_float( q7_t * pSrc, float32_t * pDst, uint32_t blockSize) { q7_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (float32_t) A / 128 */ /* convert from q7 to float and then store the results in the destination buffer */ *pDst++ = ((float32_t) * pIn++ / 128.0f); *pDst++ = ((float32_t) * pIn++ / 128.0f); *pDst++ = ((float32_t) * pIn++ / 128.0f); *pDst++ = ((float32_t) * pIn++ / 128.0f); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (float32_t) A / 128 */ /* convert from q7 to float and then store the results in the destination buffer */ *pDst++ = ((float32_t) * pIn++ / 128.0f); /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q7_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_float.c
C
lgpl
3,249
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fill_q15.c * * Description: Fills a constant value into a Q15 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup Fill * @{ */ /** * @brief Fills a constant value into a Q15 vector. * @param[in] value input value to be filled * @param[out] *pDst points to output vector * @param[in] blockSize length of the output vector * @return none. * */ void arm_fill_q15( q15_t value, q15_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t packedValue; /* value packed to 32 bits */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* Packing two 16 bit values to 32 bit value in order to use SIMD */ packedValue = __PKHBT(value, value, 16u); /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *__SIMD32(pDst)++ = packedValue; *__SIMD32(pDst)++ = packedValue; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *pDst++ = value; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of Fill group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q15.c
C
lgpl
2,843
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fill_q7.c * * Description: Fills a constant value into a Q7 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup Fill * @{ */ /** * @brief Fills a constant value into a Q7 vector. * @param[in] value input value to be filled * @param[out] *pDst points to output vector * @param[in] blockSize length of the output vector * @return none. * */ void arm_fill_q7( q7_t value, q7_t * pDst, uint32_t blockSize) { uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t packedValue; /* value packed to 32 bits */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* Packing four 8 bit values to 32 bit value in order to use SIMD */ packedValue = __PACKq7(value, value, value, value); /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *__SIMD32(pDst)++ = packedValue; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = value */ /* Fill the value in the destination buffer */ *pDst++ = value; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of Fill group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_fill_q7.c
C
lgpl
2,807
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_q7_to_q15.c * * Description: Converts the elements of the Q7 vector to Q15 vector. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * ---------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupSupport */ /** * @addtogroup q7_to_x * @{ */ /** * @brief Converts the elements of the Q7 vector to Q15 vector. * @param[in] *pSrc points to the Q7 input vector * @param[out] *pDst points to the Q15 output vector * @param[in] blockSize length of the input vector * @return none. * * \par Description: * * The equation used for the conversion process is: * * <pre> * pDst[n] = (q15_t) pSrc[n] << 8; 0 <= n < blockSize. * </pre> * */ void arm_q7_to_q15( q7_t * pSrc, q15_t * pDst, uint32_t blockSize) { q7_t *pIn = pSrc; /* Src pointer */ uint32_t blkCnt; /* loop counter */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /*loop Unrolling */ blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* C = (q15_t) A << 8 */ /* convert from q7 to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) * pIn++ << 8; *pDst++ = (q15_t) * pIn++ << 8; *pDst++ = (q15_t) * pIn++ << 8; *pDst++ = (q15_t) * pIn++ << 8; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; #else /* Run the below code for Cortex-M0 */ /* Loop over blockSize number of values */ blkCnt = blockSize; #endif /* #ifndef ARM_MATH_CM0 */ while(blkCnt > 0u) { /* C = (q15_t) A << 8 */ /* convert from q7 to q15 and then store the results in the destination buffer */ *pDst++ = (q15_t) * pIn++ << 8; /* Decrement the loop counter */ blkCnt--; } } /** * @} end of q7_to_x group */
1137519-player
lib/CMSIS/DSP_Lib/Source/SupportFunctions/arm_q7_to_q15.c
C
lgpl
3,073
SET TMP=C:\Temp SET TEMP=C:\Temp SET UVEXE=C:\Keil\UV4\UV4.EXE %UVEXE% -rb arm_cortexM0x_math.uvproj -t"DSP_Lib CM0 LE" -o"DSP_Lib CM0 LE.txt" %UVEXE% -rb arm_cortexM3x_math.uvproj -t"DSP_Lib CM3 LE" -o"DSP_Lib CM3 LE.txt" %UVEXE% -rb arm_cortexM4x_math.uvproj -t"DSP_Lib CM4 LE" -o"DSP_Lib CM4 LE.txt" %UVEXE% -rb arm_cortexM4x_math.uvproj -t"DSP_Lib CM4 LE FPU" -o"DSP_Lib CM4 LE FPU.txt"
1137519-player
lib/CMSIS/DSP_Lib/Source/GCC/arm_cortexMx_math_Build.bat
Batchfile
lgpl
404
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_sparse_q7.c * * Description: Q7 sparse FIR filter processing function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Sparse * @{ */ /** * @brief Processing function for the Q7 sparse FIR filter. * @param[in] *S points to an instance of the Q7 sparse FIR structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data * @param[in] *pScratchIn points to a temporary buffer of size blockSize. * @param[in] *pScratchOut points to a temporary buffer of size blockSize. * @param[in] blockSize number of input samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using a 32-bit internal accumulator. * Both coefficients and state variables are represented in 1.7 format and multiplications yield a 2.14 result. * The 2.14 intermediate results are accumulated in a 32-bit accumulator in 18.14 format. * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. * The accumulator is then converted to 18.7 format by discarding the low 7 bits. * Finally, the result is truncated to 1.7 format. */ void arm_fir_sparse_q7( arm_fir_sparse_instance_q7 * S, q7_t * pSrc, q7_t * pDst, q7_t * pScratchIn, q31_t * pScratchOut, uint32_t blockSize) { q7_t *pState = S->pState; /* State pointer */ q7_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q7_t *px; /* Scratch buffer pointer */ q7_t *py = pState; /* Temporary pointers for state buffer */ q7_t *pb = pScratchIn; /* Temporary pointers for scratch buffer */ q7_t *pOut = pDst; /* Destination pointer */ int32_t *pTapDelay = S->pTapDelay; /* Pointer to the array containing offset of the non-zero tap values. */ uint32_t delaySize = S->maxDelay + blockSize; /* state length */ uint16_t numTaps = S->numTaps; /* Filter order */ int32_t readIndex; /* Read index of the state buffer */ uint32_t tapCnt, blkCnt; /* loop counters */ q7_t coeff = *pCoeffs++; /* Read the coefficient value */ q31_t *pScr2 = pScratchOut; /* Working pointer for scratch buffer of output values */ q31_t in; #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t in1, in2, in3, in4; /* BlockSize of Input samples are copied into the state buffer */ /* StateIndex points to the starting position to write in the state buffer */ arm_circularWrite_q7(py, (int32_t) delaySize, &S->stateIndex, 1, pSrc, 1, blockSize); /* Loop over the number of taps. */ tapCnt = numTaps; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = ((int32_t) S->stateIndex - (int32_t) blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q7(py, (int32_t) delaySize, &readIndex, 1, pb, pb, (int32_t) blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; /* Loop over the blockSize. Unroll by a factor of 4. * Compute 4 multiplications at a time. */ blkCnt = blockSize >> 2; while(blkCnt > 0u) { /* Perform multiplication and store in the scratch buffer */ *pScratchOut++ = ((q31_t) * px++ * coeff); *pScratchOut++ = ((q31_t) * px++ * coeff); *pScratchOut++ = ((q31_t) * px++ * coeff); *pScratchOut++ = ((q31_t) * px++ * coeff); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, * compute the remaining samples */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* Perform multiplication and store in the scratch buffer */ *pScratchOut++ = ((q31_t) * px++ * coeff); /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = ((int32_t) S->stateIndex - (int32_t) blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Loop over the number of taps. */ tapCnt = (uint32_t) numTaps - 1u; while(tapCnt > 0u) { /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q7(py, (int32_t) delaySize, &readIndex, 1, pb, pb, (int32_t) blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; /* Loop over the blockSize. Unroll by a factor of 4. * Compute 4 MACS at a time. */ blkCnt = blockSize >> 2; while(blkCnt > 0u) { /* Perform Multiply-Accumulate */ in = *pScratchOut + ((q31_t) * px++ * coeff); *pScratchOut++ = in; in = *pScratchOut + ((q31_t) * px++ * coeff); *pScratchOut++ = in; in = *pScratchOut + ((q31_t) * px++ * coeff); *pScratchOut++ = in; in = *pScratchOut + ((q31_t) * px++ * coeff); *pScratchOut++ = in; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, * compute the remaining samples */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* Perform Multiply-Accumulate */ in = *pScratchOut + ((q31_t) * px++ * coeff); *pScratchOut++ = in; /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = ((int32_t) S->stateIndex - (int32_t) blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Decrement the tap loop counter */ tapCnt--; } /* All the output values are in pScratchOut buffer. Convert them into 1.15 format, saturate and store in the destination buffer. */ /* Loop over the blockSize. */ blkCnt = blockSize >> 2; while(blkCnt > 0u) { in1 = (q7_t) __SSAT(*pScr2++ >> 7, 8); in2 = (q7_t) __SSAT(*pScr2++ >> 7, 8); in3 = (q7_t) __SSAT(*pScr2++ >> 7, 8); in4 = (q7_t) __SSAT(*pScr2++ >> 7, 8); *__SIMD32(pOut)++ = __PACKq7(in1, in2, in3, in4); /* Decrement the blockSize loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, remaining samples are processed in the below loop */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { *pOut++ = (q7_t) __SSAT(*pScr2++ >> 7, 8); /* Decrement the blockSize loop counter */ blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* BlockSize of Input samples are copied into the state buffer */ /* StateIndex points to the starting position to write in the state buffer */ arm_circularWrite_q7(py, (int32_t) delaySize, &S->stateIndex, 1, pSrc, 1, blockSize); /* Loop over the number of taps. */ tapCnt = numTaps; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = ((int32_t) S->stateIndex - (int32_t) blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q7(py, (int32_t) delaySize, &readIndex, 1, pb, pb, (int32_t) blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; /* Loop over the blockSize */ blkCnt = blockSize; while(blkCnt > 0u) { /* Perform multiplication and store in the scratch buffer */ *pScratchOut++ = ((q31_t) * px++ * coeff); /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = ((int32_t) S->stateIndex - (int32_t) blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Loop over the number of taps. */ tapCnt = (uint32_t) numTaps - 1u; while(tapCnt > 0u) { /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q7(py, (int32_t) delaySize, &readIndex, 1, pb, pb, (int32_t) blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; /* Loop over the blockSize */ blkCnt = blockSize; while(blkCnt > 0u) { /* Perform Multiply-Accumulate */ in = *pScratchOut + ((q31_t) * px++ * coeff); *pScratchOut++ = in; /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = ((int32_t) S->stateIndex - (int32_t) blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Decrement the tap loop counter */ tapCnt--; } /* All the output values are in pScratchOut buffer. Convert them into 1.15 format, saturate and store in the destination buffer. */ /* Loop over the blockSize. */ blkCnt = blockSize; while(blkCnt > 0u) { *pOut++ = (q7_t) __SSAT(*pScr2++ >> 7, 8); /* Decrement the blockSize loop counter */ blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_Sparse group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q7.c
C
lgpl
12,294
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_iir_lattice_f32.c * * Description: Floating-point IIR Lattice filter processing function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @defgroup IIR_Lattice Infinite Impulse Response (IIR) Lattice Filters * * This set of functions implements lattice filters * for Q15, Q31 and floating-point data types. Lattice filters are used in a * variety of adaptive filter applications. The filter structure has feedforward and * feedback components and the net impulse response is infinite length. * The functions operate on blocks * of input and output data and each call to the function processes * <code>blockSize</code> samples through the filter. <code>pSrc</code> and * <code>pDst</code> point to input and output arrays containing <code>blockSize</code> values. * \par Algorithm: * \image html IIRLattice.gif "Infinite Impulse Response Lattice filter" * <pre> * fN(n) = x(n) * fm-1(n) = fm(n) - km * gm-1(n-1) for m = N, N-1, ...1 * gm(n) = km * fm-1(n) + gm-1(n-1) for m = N, N-1, ...1 * y(n) = vN * gN(n) + vN-1 * gN-1(n) + ...+ v0 * g0(n) * </pre> * \par * <code>pkCoeffs</code> points to array of reflection coefficients of size <code>numStages</code>. * Reflection coefficients are stored in time-reversed order. * \par * <pre> * {kN, kN-1, ....k1} * </pre> * <code>pvCoeffs</code> points to the array of ladder coefficients of size <code>(numStages+1)</code>. * Ladder coefficients are stored in time-reversed order. * \par * <pre> * {vN, vN-1, ...v0} * </pre> * <code>pState</code> points to a state array of size <code>numStages + blockSize</code>. * The state variables shown in the figure above (the g values) are stored in the <code>pState</code> array. * The state variables are updated after each block of data is processed; the coefficients are untouched. * \par Instance Structure * The coefficients and state variables for a filter are stored together in an instance data structure. * A separate instance structure must be defined for each filter. * Coefficient arrays may be shared among several instances while state variable arrays cannot be shared. * There are separate instance structure declarations for each of the 3 supported data types. * * \par Initialization Functions * There is also an associated initialization function for each data type. * The initialization function performs the following operations: * - Sets the values of the internal structure fields. * - Zeros out the values in the state buffer. * * \par * Use of the initialization function is optional. * However, if the initialization function is used, then the instance structure cannot be placed into a const data section. * To place an instance structure into a const data section, the instance structure must be manually initialized. * Set the values in the state buffer to zeros and then manually initialize the instance structure as follows: * <pre> *arm_iir_lattice_instance_f32 S = {numStages, pState, pkCoeffs, pvCoeffs}; *arm_iir_lattice_instance_q31 S = {numStages, pState, pkCoeffs, pvCoeffs}; *arm_iir_lattice_instance_q15 S = {numStages, pState, pkCoeffs, pvCoeffs}; * </pre> * \par * where <code>numStages</code> is the number of stages in the filter; <code>pState</code> points to the state buffer array; * <code>pkCoeffs</code> points to array of the reflection coefficients; <code>pvCoeffs</code> points to the array of ladder coefficients. * \par Fixed-Point Behavior * Care must be taken when using the fixed-point versions of the IIR lattice filter functions. * In particular, the overflow and saturation behavior of the accumulator used in each function must be considered. * Refer to the function specific documentation below for usage guidelines. */ /** * @addtogroup IIR_Lattice * @{ */ /** * @brief Processing function for the floating-point IIR lattice filter. * @param[in] *S points to an instance of the floating-point IIR lattice structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process. * @return none. */ void arm_iir_lattice_f32( const arm_iir_lattice_instance_f32 * S, float32_t * pSrc, float32_t * pDst, uint32_t blockSize) { float32_t fcurr, fnext = 0, gcurr, gnext; /* Temporary variables for lattice stages */ float32_t acc; /* Accumlator */ uint32_t blkCnt, tapCnt; /* temporary variables for counts */ float32_t *px1, *px2, *pk, *pv; /* temporary pointers for state and coef */ uint32_t numStages = S->numStages; /* number of stages */ float32_t *pState; /* State pointer */ float32_t *pStateCurnt; /* State current pointer */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ gcurr = 0.0f; blkCnt = blockSize; pState = &S->pState[0]; /* Sample processing */ while(blkCnt > 0u) { /* Read Sample from input buffer */ /* fN(n) = x(n) */ fcurr = *pSrc++; /* Initialize state read pointer */ px1 = pState; /* Initialize state write pointer */ px2 = pState; /* Set accumulator to zero */ acc = 0.0f; /* Initialize Ladder coeff pointer */ pv = &S->pvCoeffs[0]; /* Initialize Reflection coeff pointer */ pk = &S->pkCoeffs[0]; /* Process sample for first tap */ gcurr = *px1++; /* fN-1(n) = fN(n) - kN * gN-1(n-1) */ fnext = fcurr - ((*pk) * gcurr); /* gN(n) = kN * fN-1(n) + gN-1(n-1) */ gnext = (fnext * (*pk++)) + gcurr; /* write gN(n) into state for next sample processing */ *px2++ = gnext; /* y(n) += gN(n) * vN */ acc += (gnext * (*pv++)); /* Update f values for next coefficient processing */ fcurr = fnext; /* Loop unrolling. Process 4 taps at a time. */ tapCnt = (numStages - 1u) >> 2; while(tapCnt > 0u) { /* Process sample for 2nd, 6th ...taps */ /* Read gN-2(n-1) from state buffer */ gcurr = *px1++; /* Process sample for 2nd, 6th .. taps */ /* fN-2(n) = fN-1(n) - kN-1 * gN-2(n-1) */ fnext = fcurr - ((*pk) * gcurr); /* gN-1(n) = kN-1 * fN-2(n) + gN-2(n-1) */ gnext = (fnext * (*pk++)) + gcurr; /* y(n) += gN-1(n) * vN-1 */ /* process for gN-5(n) * vN-5, gN-9(n) * vN-9 ... */ acc += (gnext * (*pv++)); /* write gN-1(n) into state for next sample processing */ *px2++ = gnext; /* Process sample for 3nd, 7th ...taps */ /* Read gN-3(n-1) from state buffer */ gcurr = *px1++; /* Process sample for 3rd, 7th .. taps */ /* fN-3(n) = fN-2(n) - kN-2 * gN-3(n-1) */ fcurr = fnext - ((*pk) * gcurr); /* gN-2(n) = kN-2 * fN-3(n) + gN-3(n-1) */ gnext = (fcurr * (*pk++)) + gcurr; /* y(n) += gN-2(n) * vN-2 */ /* process for gN-6(n) * vN-6, gN-10(n) * vN-10 ... */ acc += (gnext * (*pv++)); /* write gN-2(n) into state for next sample processing */ *px2++ = gnext; /* Process sample for 4th, 8th ...taps */ /* Read gN-4(n-1) from state buffer */ gcurr = *px1++; /* Process sample for 4th, 8th .. taps */ /* fN-4(n) = fN-3(n) - kN-3 * gN-4(n-1) */ fnext = fcurr - ((*pk) * gcurr); /* gN-3(n) = kN-3 * fN-4(n) + gN-4(n-1) */ gnext = (fnext * (*pk++)) + gcurr; /* y(n) += gN-3(n) * vN-3 */ /* process for gN-7(n) * vN-7, gN-11(n) * vN-11 ... */ acc += (gnext * (*pv++)); /* write gN-3(n) into state for next sample processing */ *px2++ = gnext; /* Process sample for 5th, 9th ...taps */ /* Read gN-5(n-1) from state buffer */ gcurr = *px1++; /* Process sample for 5th, 9th .. taps */ /* fN-5(n) = fN-4(n) - kN-4 * gN-1(n-1) */ fcurr = fnext - ((*pk) * gcurr); /* gN-4(n) = kN-4 * fN-5(n) + gN-5(n-1) */ gnext = (fcurr * (*pk++)) + gcurr; /* y(n) += gN-4(n) * vN-4 */ /* process for gN-8(n) * vN-8, gN-12(n) * vN-12 ... */ acc += (gnext * (*pv++)); /* write gN-4(n) into state for next sample processing */ *px2++ = gnext; tapCnt--; } fnext = fcurr; /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = (numStages - 1u) % 0x4u; while(tapCnt > 0u) { gcurr = *px1++; /* Process sample for last taps */ fnext = fcurr - ((*pk) * gcurr); gnext = (fnext * (*pk++)) + gcurr; /* Output samples for last taps */ acc += (gnext * (*pv++)); *px2++ = gnext; fcurr = fnext; tapCnt--; } /* y(n) += g0(n) * v0 */ acc += (fnext * (*pv)); *px2++ = fnext; /* write out into pDst */ *pDst++ = acc; /* Advance the state pointer by 4 to process the next group of 4 samples */ pState = pState + 1u; blkCnt--; } /* Processing is complete. Now copy last S->numStages samples to start of the buffer for the preperation of next frame process */ /* Points to the start of the state buffer */ pStateCurnt = &S->pState[0]; pState = &S->pState[blockSize]; tapCnt = numStages >> 2u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } /* Calculate remaining number of copies */ tapCnt = (numStages) % 0x4u; /* Copy the remaining q31_t data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ blkCnt = blockSize; pState = &S->pState[0]; /* Sample processing */ while(blkCnt > 0u) { /* Read Sample from input buffer */ /* fN(n) = x(n) */ fcurr = *pSrc++; /* Initialize state read pointer */ px1 = pState; /* Initialize state write pointer */ px2 = pState; /* Set accumulator to zero */ acc = 0.0f; /* Initialize Ladder coeff pointer */ pv = &S->pvCoeffs[0]; /* Initialize Reflection coeff pointer */ pk = &S->pkCoeffs[0]; /* Process sample for numStages */ tapCnt = numStages; while(tapCnt > 0u) { gcurr = *px1++; /* Process sample for last taps */ fnext = fcurr - ((*pk) * gcurr); gnext = (fnext * (*pk++)) + gcurr; /* Output samples for last taps */ acc += (gnext * (*pv++)); *px2++ = gnext; fcurr = fnext; /* Decrementing loop counter */ tapCnt--; } /* y(n) += g0(n) * v0 */ acc += (fnext * (*pv)); *px2++ = fnext; /* write out into pDst */ *pDst++ = acc; /* Advance the state pointer by 1 to process the next group of samples */ pState = pState + 1u; blkCnt--; } /* Processing is complete. Now copy last S->numStages samples to start of the buffer for the preperation of next frame process */ /* Points to the start of the state buffer */ pStateCurnt = &S->pState[0]; pState = &S->pState[blockSize]; tapCnt = numStages; /* Copy the data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of IIR_Lattice group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_f32.c
C
lgpl
13,002
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_interpolate_init_f32.c * * Description: Floating-point FIR interpolator initialization function * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Interpolate * @{ */ /** * @brief Initialization function for the floating-point FIR interpolator. * @param[in,out] *S points to an instance of the floating-point FIR interpolator structure. * @param[in] L upsample factor. * @param[in] numTaps number of filter coefficients in the filter. * @param[in] *pCoeffs points to the filter coefficient buffer. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of input samples to process per call. * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_LENGTH_ERROR if * the filter length <code>numTaps</code> is not a multiple of the interpolation factor <code>L</code>. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[numTaps-2], ..., b[1], b[0]} * </pre> * The length of the filter <code>numTaps</code> must be a multiple of the interpolation factor <code>L</code>. * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>(numTaps/L)+blockSize-1</code> words * where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_fir_interpolate_f32()</code>. */ arm_status arm_fir_interpolate_init_f32( arm_fir_interpolate_instance_f32 * S, uint8_t L, uint16_t numTaps, float32_t * pCoeffs, float32_t * pState, uint32_t blockSize) { arm_status status; /* The filter length must be a multiple of the interpolation factor */ if((numTaps % L) != 0u) { /* Set status as ARM_MATH_LENGTH_ERROR */ status = ARM_MATH_LENGTH_ERROR; } else { /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Assign Interpolation factor */ S->L = L; /* Assign polyPhaseLength */ S->phaseLength = numTaps / L; /* Clear state buffer and size of state array is always phaseLength + blockSize - 1 */ memset(pState, 0, (blockSize + ((uint32_t) S->phaseLength - 1u)) * sizeof(float32_t)); /* Assign state pointer */ S->pState = pState; status = ARM_MATH_SUCCESS; } return (status); } /** * @} end of FIR_Interpolate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_f32.c
C
lgpl
3,629
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_interpolate_q31.c * * Description: Q31 FIR interpolation. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Interpolate * @{ */ /** * @brief Processing function for the Q31 FIR interpolator. * @param[in] *S points to an instance of the Q31 FIR interpolator structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of input samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using an internal 64-bit accumulator. * The accumulator has a 2.62 format and maintains full precision of the intermediate multiplication results but provides only a single guard bit. * Thus, if the accumulator result overflows it wraps around rather than clip. * In order to avoid overflows completely the input signal must be scaled down by <code>1/(numTaps/L)</code>. * since <code>numTaps/L</code> additions occur per output sample. * After all multiply-accumulates are performed, the 2.62 accumulator is truncated to 1.32 format and then saturated to 1.31 format. */ void arm_fir_interpolate_q31( const arm_fir_interpolate_instance_q31 * S, q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t *pState = S->pState; /* State pointer */ q31_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q31_t *pStateCurnt; /* Points to the current sample of the state */ q31_t *ptr1, *ptr2; /* Temporary pointers for state and coefficient buffers */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q63_t sum0; /* Accumulators */ q31_t x0, c0; /* Temporary variables to hold state and coefficient values */ uint32_t i, blkCnt, j; /* Loop counters */ uint16_t phaseLen = S->phaseLength, tapCnt; /* Length of each polyphase filter component */ /* S->pState buffer contains previous frame (phaseLen - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + ((q31_t) phaseLen - 1); /* Total number of intput samples */ blkCnt = blockSize; /* Loop over the blockSize. */ while(blkCnt > 0u) { /* Copy new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Address modifier index of coefficient buffer */ j = 1u; /* Loop over the Interpolation factor. */ i = S->L; while(i > 0u) { /* Set accumulator to zero */ sum0 = 0; /* Initialize state pointer */ ptr1 = pState; /* Initialize coefficient pointer */ ptr2 = pCoeffs + (S->L - j); /* Loop over the polyPhase length. Unroll by a factor of 4. ** Repeat until we've computed numTaps-(4*S->L) coefficients. */ tapCnt = phaseLen >> 2; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *(ptr2); /* Upsampling is done by stuffing L-1 zeros between each sample. * So instead of multiplying zeros with coefficients, * Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Decrement the loop counter */ tapCnt--; } /* If the polyPhase length is not a multiple of 4, compute the remaining filter taps */ tapCnt = phaseLen & 0x3u; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Decrement the loop counter */ tapCnt--; } /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = (q31_t) (sum0 >> 31); /* Increment the address modifier index of coefficient buffer */ j++; /* Decrement the loop counter */ i--; } /* Advance the state pointer by 1 * to process the next group of interpolation factor number samples */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last phaseLen - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; tapCnt = (phaseLen - 1u) >> 2u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } tapCnt = (phaseLen - 1u) % 0x04u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ q63_t sum; /* Accumulator */ q31_t x0, c0; /* Temporary variables to hold state and coefficient values */ uint32_t i, blkCnt; /* Loop counters */ uint16_t phaseLen = S->phaseLength, tapCnt; /* Length of each polyphase filter component */ /* S->pState buffer contains previous frame (phaseLen - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + ((q31_t) phaseLen - 1); /* Total number of intput samples */ blkCnt = blockSize; /* Loop over the blockSize. */ while(blkCnt > 0u) { /* Copy new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Loop over the Interpolation factor. */ i = S->L; while(i > 0u) { /* Set accumulator to zero */ sum = 0; /* Initialize state pointer */ ptr1 = pState; /* Initialize coefficient pointer */ ptr2 = pCoeffs + (i - 1u); tapCnt = phaseLen; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *ptr1++; /* Perform the multiply-accumulate */ sum += (q63_t) x0 *c0; /* Decrement the loop counter */ tapCnt--; } /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = (q31_t) (sum >> 31); /* Decrement the loop counter */ i--; } /* Advance the state pointer by 1 * to process the next group of interpolation factor number samples */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last phaseLen - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; tapCnt = phaseLen - 1u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_Interpolate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_q31.c
C
lgpl
9,878
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_iir_lattice_init_q31.c * * Description: Initialization function for the Q31 IIR lattice filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup IIR_Lattice * @{ */ /** * @brief Initialization function for the Q31 IIR lattice filter. * @param[in] *S points to an instance of the Q31 IIR lattice structure. * @param[in] numStages number of stages in the filter. * @param[in] *pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. * @param[in] *pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. * @param[in] *pState points to the state buffer. The array is of length numStages+blockSize. * @param[in] blockSize number of samples to process. * @return none. */ void arm_iir_lattice_init_q31( arm_iir_lattice_instance_q31 * S, uint16_t numStages, q31_t * pkCoeffs, q31_t * pvCoeffs, q31_t * pState, uint32_t blockSize) { /* Assign filter taps */ S->numStages = numStages; /* Assign reflection coefficient pointer */ S->pkCoeffs = pkCoeffs; /* Assign ladder coefficient pointer */ S->pvCoeffs = pvCoeffs; /* Clear state buffer and size is always blockSize + numStages */ memset(pState, 0, (numStages + blockSize) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of IIR_Lattice group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_q31.c
C
lgpl
2,455
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_fast_q31.c * * Description: Processing function for the Q31 Fast FIR filter. * * Target Processor: Cortex-M4/Cortex-M3 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.9 2010/08/27 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR * @{ */ /** * @param[in] *S points to an instance of the Q31 structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * * \par * This function is optimized for speed at the expense of fixed-point precision and overflow protection. * The result of each 1.31 x 1.31 multiplication is truncated to 2.30 format. * These intermediate results are added to a 2.30 accumulator. * Finally, the accumulator is saturated and converted to a 1.31 result. * The fast version has the same overflow behavior as the standard version and provides less precision since it discards the low 32 bits of each multiplication result. * In order to avoid overflows completely the input signal must be scaled down by log2(numTaps) bits. * * \par * Refer to the function <code>arm_fir_q31()</code> for a slower implementation of this function which uses a 64-bit accumulator to provide higher precision. Both the slow and the fast versions use the same instance structure. * Use the function <code>arm_fir_init_q31()</code> to initialize the filter structure. */ void arm_fir_fast_q31( const arm_fir_instance_q31 * S, q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t *pState = S->pState; /* State pointer */ q31_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q31_t *pStateCurnt; /* Points to the current sample of the state */ q31_t x0, x1, x2, x3; /* Temporary variables to hold state */ q31_t c0; /* Temporary variable to hold coefficient value */ q31_t *px; /* Temporary pointer for state */ q31_t *pb; /* Temporary pointer for coefficient buffer */ q63_t acc0, acc1, acc2, acc3; /* Accumulators */ uint32_t numTaps = S->numTaps; /* Number of filter coefficients in the filter */ uint32_t i, tapCnt, blkCnt; /* Loop counters */ /* S->pState points to buffer which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Apply loop unrolling and compute 4 output values simultaneously. * The variables acc0 ... acc3 hold output values that are being computed: * * acc0 = b[numTaps-1] * x[n-numTaps-1] + b[numTaps-2] * x[n-numTaps-2] + b[numTaps-3] * x[n-numTaps-3] +...+ b[0] * x[0] * acc1 = b[numTaps-1] * x[n-numTaps] + b[numTaps-2] * x[n-numTaps-1] + b[numTaps-3] * x[n-numTaps-2] +...+ b[0] * x[1] * acc2 = b[numTaps-1] * x[n-numTaps+1] + b[numTaps-2] * x[n-numTaps] + b[numTaps-3] * x[n-numTaps-1] +...+ b[0] * x[2] * acc3 = b[numTaps-1] * x[n-numTaps+2] + b[numTaps-2] * x[n-numTaps+1] + b[numTaps-3] * x[n-numTaps] +...+ b[0] * x[3] */ blkCnt = blockSize >> 2; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Copy four new input samples into the state buffer */ *pStateCurnt++ = *pSrc++; *pStateCurnt++ = *pSrc++; *pStateCurnt++ = *pSrc++; *pStateCurnt++ = *pSrc++; /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* Initialize state pointer */ px = pState; /* Initialize coefficient pointer */ pb = pCoeffs; /* Read the first three samples from the state buffer: * x[n-numTaps], x[n-numTaps-1], x[n-numTaps-2] */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2; i = tapCnt; while(i > 0u) { /* Read the b[numTaps] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-3] sample */ x3 = *(px++); /* acc0 += b[numTaps] * x[n-numTaps] */ acc0 = (q31_t) ((((q63_t) x0 * c0) + (acc0 << 32)) >> 32); /* acc1 += b[numTaps] * x[n-numTaps-1] */ acc1 = (q31_t) ((((q63_t) x1 * c0) + (acc1 << 32)) >> 32); /* acc2 += b[numTaps] * x[n-numTaps-2] */ acc2 = (q31_t) ((((q63_t) x2 * c0) + (acc2 << 32)) >> 32); /* acc3 += b[numTaps] * x[n-numTaps-3] */ acc3 = (q31_t) ((((q63_t) x3 * c0) + (acc3 << 32)) >> 32); /* Read the b[numTaps-1] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-4] sample */ x0 = *(px++); /* Perform the multiply-accumulates */ acc0 = (q31_t) ((((q63_t) x1 * c0) + (acc0 << 32)) >> 32); acc1 = (q31_t) ((((q63_t) x2 * c0) + (acc1 << 32)) >> 32); acc2 = (q31_t) ((((q63_t) x3 * c0) + (acc2 << 32)) >> 32); acc3 = (q31_t) ((((q63_t) x0 * c0) + (acc3 << 32)) >> 32); /* Read the b[numTaps-2] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-5] sample */ x1 = *(px++); /* Perform the multiply-accumulates */ acc0 = (q31_t) ((((q63_t) x2 * c0) + (acc0 << 32)) >> 32); acc1 = (q31_t) ((((q63_t) x3 * c0) + (acc1 << 32)) >> 32); acc2 = (q31_t) ((((q63_t) x0 * c0) + (acc2 << 32)) >> 32); acc3 = (q31_t) ((((q63_t) x1 * c0) + (acc3 << 32)) >> 32); /* Read the b[numTaps-3] coefficients */ c0 = *(pb++); /* Read x[n-numTaps-6] sample */ x2 = *(px++); /* Perform the multiply-accumulates */ acc0 = (q31_t) ((((q63_t) x3 * c0) + (acc0 << 32)) >> 32); acc1 = (q31_t) ((((q63_t) x0 * c0) + (acc1 << 32)) >> 32); acc2 = (q31_t) ((((q63_t) x1 * c0) + (acc2 << 32)) >> 32); acc3 = (q31_t) ((((q63_t) x2 * c0) + (acc3 << 32)) >> 32); i--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ i = numTaps - (tapCnt * 4u); while(i > 0u) { /* Read coefficients */ c0 = *(pb++); /* Fetch 1 state variable */ x3 = *(px++); /* Perform the multiply-accumulates */ acc0 = (q31_t) ((((q63_t) x0 * c0) + (acc0 << 32)) >> 32); acc1 = (q31_t) ((((q63_t) x1 * c0) + (acc1 << 32)) >> 32); acc2 = (q31_t) ((((q63_t) x2 * c0) + (acc2 << 32)) >> 32); acc3 = (q31_t) ((((q63_t) x3 * c0) + (acc3 << 32)) >> 32); /* Reuse the present sample states for next sample */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ i--; } /* Advance the state pointer by 4 to process the next group of 4 samples */ pState = pState + 4; /* The results in the 4 accumulators are in 2.30 format. Convert to 1.31 ** Then store the 4 outputs in the destination buffer. */ *pDst++ = (q31_t) (acc0 << 1); *pDst++ = (q31_t) (acc1 << 1); *pDst++ = (q31_t) (acc2 << 1); *pDst++ = (q31_t) (acc3 << 1); /* Decrement the samples loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 4u; while(blkCnt > 0u) { /* Copy one sample at a time into state buffer */ *pStateCurnt++ = *pSrc++; /* Set the accumulator to zero */ acc0 = 0; /* Initialize state pointer */ px = pState; /* Initialize Coefficient pointer */ pb = (pCoeffs); i = numTaps; /* Perform the multiply-accumulates */ do { acc0 = (q31_t) ((((q63_t) * (px++) * (*(pb++))) + (acc0 << 32)) >> 32); i--; } while(i > 0u); /* The result is in 2.30 format. Convert to 1.31 ** Then store the output in the destination buffer. */ *pDst++ = (q31_t) (acc0 << 1); /* Advance state pointer by 1 for the next sample */ pState = pState + 1; /* Decrement the samples loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; tapCnt = (numTaps - 1u) >> 2u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } /* Calculate remaining number of copies */ tapCnt = (numTaps - 1u) % 0x4u; /* Copy the remaining q31_t data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } } /** * @} end of FIR group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_fast_q31.c
C
lgpl
10,241
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_init_q15.c * * Description: Q15 LMS filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup LMS * @{ */ /** * @brief Initialization function for the Q15 LMS filter. * @param[in] *S points to an instance of the Q15 LMS filter structure. * @param[in] numTaps number of filter coefficients. * @param[in] *pCoeffs points to the coefficient buffer. * @param[in] *pState points to the state buffer. * @param[in] mu step size that controls filter coefficient updates. * @param[in] blockSize number of samples to process. * @param[in] postShift bit shift applied to coefficients. * @return none. * * \par Description: * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * The initial filter coefficients serve as a starting point for the adaptive filter. * <code>pState</code> points to the array of state variables and size of array is * <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of * input samples processed by each call to <code>arm_lms_q15()</code>. */ void arm_lms_init_q15( arm_lms_instance_q15 * S, uint16_t numTaps, q15_t * pCoeffs, q15_t * pState, q15_t mu, uint32_t blockSize, uint32_t postShift) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always blockSize + numTaps - 1 */ memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(q15_t)); /* Assign state pointer */ S->pState = pState; /* Assign Step size value */ S->mu = mu; /* Assign postShift value to be applied */ S->postShift = postShift; } /** * @} end of LMS group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_q15.c
C
lgpl
2,915
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_interpolate_init_q15.c * * Description: Q15 FIR interpolator initialization function * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Interpolate * @{ */ /** * @brief Initialization function for the Q15 FIR interpolator. * @param[in,out] *S points to an instance of the Q15 FIR interpolator structure. * @param[in] L upsample factor. * @param[in] numTaps number of filter coefficients in the filter. * @param[in] *pCoeffs points to the filter coefficient buffer. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of input samples to process per call. * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_LENGTH_ERROR if * the filter length <code>numTaps</code> is not a multiple of the interpolation factor <code>L</code>. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[numTaps-2], ..., b[1], b[0]} * </pre> * The length of the filter <code>numTaps</code> must be a multiple of the interpolation factor <code>L</code>. * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>(numTaps/L)+blockSize-1</code> words * where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_fir_interpolate_q15()</code>. */ arm_status arm_fir_interpolate_init_q15( arm_fir_interpolate_instance_q15 * S, uint8_t L, uint16_t numTaps, q15_t * pCoeffs, q15_t * pState, uint32_t blockSize) { arm_status status; /* The filter length must be a multiple of the interpolation factor */ if((numTaps % L) != 0u) { /* Set status as ARM_MATH_LENGTH_ERROR */ status = ARM_MATH_LENGTH_ERROR; } else { /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Assign Interpolation factor */ S->L = L; /* Assign polyPhaseLength */ S->phaseLength = numTaps / L; /* Clear state buffer and size of buffer is always phaseLength + blockSize - 1 */ memset(pState, 0, (blockSize + ((uint32_t) S->phaseLength - 1u)) * sizeof(q15_t)); /* Assign state pointer */ S->pState = pState; status = ARM_MATH_SUCCESS; } return (status); } /** * @} end of FIR_Interpolate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_q15.c
C
lgpl
3,566
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_sparse_q15.c * * Description: Q15 sparse FIR filter processing function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ------------------------------------------------------------------- */ #include "arm_math.h" /** * @addtogroup FIR_Sparse * @{ */ /** * @brief Processing function for the Q15 sparse FIR filter. * @param[in] *S points to an instance of the Q15 sparse FIR structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data * @param[in] *pScratchIn points to a temporary buffer of size blockSize. * @param[in] *pScratchOut points to a temporary buffer of size blockSize. * @param[in] blockSize number of input samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using an internal 32-bit accumulator. * The 1.15 x 1.15 multiplications yield a 2.30 result and these are added to a 2.30 accumulator. * Thus the full precision of the multiplications is maintained but there is only a single guard bit in the accumulator. * If the accumulator result overflows it will wrap around rather than saturate. * After all multiply-accumulates are performed, the 2.30 accumulator is truncated to 2.15 format and then saturated to 1.15 format. * In order to avoid overflows the input signal or coefficients must be scaled down by log2(numTaps) bits. */ void arm_fir_sparse_q15( arm_fir_sparse_instance_q15 * S, q15_t * pSrc, q15_t * pDst, q15_t * pScratchIn, q31_t * pScratchOut, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ q15_t *pIn = pSrc; /* Working pointer for input */ q15_t *pOut = pDst; /* Working pointer for output */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *px; /* Temporary pointers for scratch buffer */ q15_t *pb = pScratchIn; /* Temporary pointers for scratch buffer */ q15_t *py = pState; /* Temporary pointers for state buffer */ int32_t *pTapDelay = S->pTapDelay; /* Pointer to the array containing offset of the non-zero tap values. */ uint32_t delaySize = S->maxDelay + blockSize; /* state length */ uint16_t numTaps = S->numTaps; /* Filter order */ int32_t readIndex; /* Read index of the state buffer */ uint32_t tapCnt, blkCnt; /* loop counters */ q15_t coeff = *pCoeffs++; /* Read the first coefficient value */ q31_t *pScr2 = pScratchOut; /* Working pointer for pScratchOut */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t in1, in2; /* Temporary variables */ /* BlockSize of Input samples are copied into the state buffer */ /* StateIndex points to the starting position to write in the state buffer */ arm_circularWrite_q15(py, delaySize, &S->stateIndex, 1, pIn, 1, blockSize); /* Loop over the number of taps. */ tapCnt = numTaps; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = (S->stateIndex - blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q15(py, delaySize, &readIndex, 1, pb, pb, blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; /* Loop over the blockSize. Unroll by a factor of 4. * Compute 4 multiplications at a time. */ blkCnt = blockSize >> 2; while(blkCnt > 0u) { /* Perform multiplication and store in the scratch buffer */ *pScratchOut++ = ((q31_t) * px++ * coeff); *pScratchOut++ = ((q31_t) * px++ * coeff); *pScratchOut++ = ((q31_t) * px++ * coeff); *pScratchOut++ = ((q31_t) * px++ * coeff); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, * compute the remaining samples */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* Perform multiplication and store in the scratch buffer */ *pScratchOut++ = ((q31_t) * px++ * coeff); /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = (S->stateIndex - blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Loop over the number of taps. */ tapCnt = (uint32_t) numTaps - 1u; while(tapCnt > 0u) { /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q15(py, delaySize, &readIndex, 1, pb, pb, blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; /* Loop over the blockSize. Unroll by a factor of 4. * Compute 4 MACS at a time. */ blkCnt = blockSize >> 2; while(blkCnt > 0u) { /* Perform Multiply-Accumulate */ *pScratchOut++ += (q31_t) * px++ * coeff; *pScratchOut++ += (q31_t) * px++ * coeff; *pScratchOut++ += (q31_t) * px++ * coeff; *pScratchOut++ += (q31_t) * px++ * coeff; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, * compute the remaining samples */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* Perform Multiply-Accumulate */ *pScratchOut++ += (q31_t) * px++ * coeff; /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = (S->stateIndex - blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Decrement the tap loop counter */ tapCnt--; } /* All the output values are in pScratchOut buffer. Convert them into 1.15 format, saturate and store in the destination buffer. */ /* Loop over the blockSize. */ blkCnt = blockSize >> 2; while(blkCnt > 0u) { in1 = *pScr2++; in2 = *pScr2++; #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pOut)++ = __PKHBT((q15_t) __SSAT(in1 >> 15, 16), (q15_t) __SSAT(in2 >> 15, 16), 16); #else *__SIMD32(pOut)++ = __PKHBT((q15_t) __SSAT(in2 >> 15, 16), (q15_t) __SSAT(in1 >> 15, 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ in1 = *pScr2++; in2 = *pScr2++; #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pOut)++ = __PKHBT((q15_t) __SSAT(in1 >> 15, 16), (q15_t) __SSAT(in2 >> 15, 16), 16); #else *__SIMD32(pOut)++ = __PKHBT((q15_t) __SSAT(in2 >> 15, 16), (q15_t) __SSAT(in1 >> 15, 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ blkCnt--; } /* If the blockSize is not a multiple of 4, remaining samples are processed in the below loop */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { *pOut++ = (q15_t) __SSAT(*pScr2++ >> 15, 16); blkCnt--; } #else /* Run the below code for Cortex-M0 */ /* BlockSize of Input samples are copied into the state buffer */ /* StateIndex points to the starting position to write in the state buffer */ arm_circularWrite_q15(py, delaySize, &S->stateIndex, 1, pIn, 1, blockSize); /* Loop over the number of taps. */ tapCnt = numTaps; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = (S->stateIndex - blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q15(py, delaySize, &readIndex, 1, pb, pb, blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; blkCnt = blockSize; while(blkCnt > 0u) { /* Perform multiplication and store in the scratch buffer */ *pScratchOut++ = ((q31_t) * px++ * coeff); /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = (S->stateIndex - blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Loop over the number of taps. */ tapCnt = (uint32_t) numTaps - 1u; while(tapCnt > 0u) { /* Working pointer for state buffer is updated */ py = pState; /* blockSize samples are read from the state buffer */ arm_circularRead_q15(py, delaySize, &readIndex, 1, pb, pb, blockSize, 1, blockSize); /* Working pointer for the scratch buffer of state values */ px = pb; /* Working pointer for scratch buffer of output values */ pScratchOut = pScr2; blkCnt = blockSize; while(blkCnt > 0u) { /* Perform Multiply-Accumulate */ *pScratchOut++ += (q31_t) * px++ * coeff; /* Decrement the loop counter */ blkCnt--; } /* Load the coefficient value and * increment the coefficient buffer for the next set of state values */ coeff = *pCoeffs++; /* Read Index, from where the state buffer should be read, is calculated. */ readIndex = (S->stateIndex - blockSize) - *pTapDelay++; /* Wraparound of readIndex */ if(readIndex < 0) { readIndex += (int32_t) delaySize; } /* Decrement the tap loop counter */ tapCnt--; } /* All the output values are in pScratchOut buffer. Convert them into 1.15 format, saturate and store in the destination buffer. */ /* Loop over the blockSize. */ blkCnt = blockSize; while(blkCnt > 0u) { *pOut++ = (q15_t) __SSAT(*pScr2++ >> 15, 16); blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_Sparse group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_q15.c
C
lgpl
12,312
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_q7.c * * Description: Q7 FIR filter processing function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR * @{ */ /** * @param[in] *S points to an instance of the Q7 FIR filter structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using a 32-bit internal accumulator. * Both coefficients and state variables are represented in 1.7 format and multiplications yield a 2.14 result. * The 2.14 intermediate results are accumulated in a 32-bit accumulator in 18.14 format. * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. * The accumulator is converted to 18.7 format by discarding the low 7 bits. * Finally, the result is truncated to 1.7 format. */ void arm_fir_q7( const arm_fir_instance_q7 * S, q7_t * pSrc, q7_t * pDst, uint32_t blockSize) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t *pState = S->pState; /* State pointer */ q7_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q7_t *pStateCurnt; /* Points to the current sample of the state */ q7_t x0, x1, x2, x3; /* Temporary variables to hold state */ q7_t c0; /* Temporary variable to hold coefficient value */ q7_t *px; /* Temporary pointer for state */ q7_t *pb; /* Temporary pointer for coefficient buffer */ q31_t acc0, acc1, acc2, acc3; /* Accumulators */ uint32_t numTaps = S->numTaps; /* Number of filter coefficients in the filter */ uint32_t i, tapCnt, blkCnt; /* Loop counters */ /* S->pState points to state array which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Apply loop unrolling and compute 4 output values simultaneously. * The variables acc0 ... acc3 hold output values that are being computed: * * acc0 = b[numTaps-1] * x[n-numTaps-1] + b[numTaps-2] * x[n-numTaps-2] + b[numTaps-3] * x[n-numTaps-3] +...+ b[0] * x[0] * acc1 = b[numTaps-1] * x[n-numTaps] + b[numTaps-2] * x[n-numTaps-1] + b[numTaps-3] * x[n-numTaps-2] +...+ b[0] * x[1] * acc2 = b[numTaps-1] * x[n-numTaps+1] + b[numTaps-2] * x[n-numTaps] + b[numTaps-3] * x[n-numTaps-1] +...+ b[0] * x[2] * acc3 = b[numTaps-1] * x[n-numTaps+2] + b[numTaps-2] * x[n-numTaps+1] + b[numTaps-3] * x[n-numTaps] +...+ b[0] * x[3] */ blkCnt = blockSize >> 2; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Copy four new input samples into the state buffer */ *pStateCurnt++ = *pSrc++; *pStateCurnt++ = *pSrc++; *pStateCurnt++ = *pSrc++; *pStateCurnt++ = *pSrc++; /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* Initialize state pointer */ px = pState; /* Initialize coefficient pointer */ pb = pCoeffs; /* Read the first three samples from the state buffer: * x[n-numTaps], x[n-numTaps-1], x[n-numTaps-2] */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2; i = tapCnt; while(i > 0u) { /* Read the b[numTaps] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-3] sample */ x3 = *(px++); /* acc0 += b[numTaps] * x[n-numTaps] */ acc0 += ((q15_t) x0 * c0); /* acc1 += b[numTaps] * x[n-numTaps-1] */ acc1 += ((q15_t) x1 * c0); /* acc2 += b[numTaps] * x[n-numTaps-2] */ acc2 += ((q15_t) x2 * c0); /* acc3 += b[numTaps] * x[n-numTaps-3] */ acc3 += ((q15_t) x3 * c0); /* Read the b[numTaps-1] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-4] sample */ x0 = *(px++); /* Perform the multiply-accumulates */ acc0 += ((q15_t) x1 * c0); acc1 += ((q15_t) x2 * c0); acc2 += ((q15_t) x3 * c0); acc3 += ((q15_t) x0 * c0); /* Read the b[numTaps-2] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-5] sample */ x1 = *(px++); /* Perform the multiply-accumulates */ acc0 += ((q15_t) x2 * c0); acc1 += ((q15_t) x3 * c0); acc2 += ((q15_t) x0 * c0); acc3 += ((q15_t) x1 * c0); /* Read the b[numTaps-3] coefficients */ c0 = *(pb++); /* Read x[n-numTaps-6] sample */ x2 = *(px++); /* Perform the multiply-accumulates */ acc0 += ((q15_t) x3 * c0); acc1 += ((q15_t) x0 * c0); acc2 += ((q15_t) x1 * c0); acc3 += ((q15_t) x2 * c0); i--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ i = numTaps - (tapCnt * 4u); while(i > 0u) { /* Read coefficients */ c0 = *(pb++); /* Fetch 1 state variable */ x3 = *(px++); /* Perform the multiply-accumulates */ acc0 += ((q15_t) x0 * c0); acc1 += ((q15_t) x1 * c0); acc2 += ((q15_t) x2 * c0); acc3 += ((q15_t) x3 * c0); /* Reuse the present sample states for next sample */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ i--; } /* Advance the state pointer by 4 to process the next group of 4 samples */ pState = pState + 4; /* The results in the 4 accumulators are in 2.62 format. Convert to 1.31 ** Then store the 4 outputs in the destination buffer. */ acc0 = __SSAT((acc0 >> 7u), 8); *pDst++ = acc0; acc1 = __SSAT((acc1 >> 7u), 8); *pDst++ = acc1; acc2 = __SSAT((acc2 >> 7u), 8); *pDst++ = acc2; acc3 = __SSAT((acc3 >> 7u), 8); *pDst++ = acc3; /* Decrement the samples loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 4u; while(blkCnt > 0u) { /* Copy one sample at a time into state buffer */ *pStateCurnt++ = *pSrc++; /* Set the accumulator to zero */ acc0 = 0; /* Initialize state pointer */ px = pState; /* Initialize Coefficient pointer */ pb = (pCoeffs); i = numTaps; /* Perform the multiply-accumulates */ do { acc0 += (q15_t) * (px++) * (*(pb++)); i--; } while(i > 0u); /* The result is in 2.14 format. Convert to 1.7 ** Then store the output in the destination buffer. */ *pDst++ = __SSAT((acc0 >> 7u), 8); /* Advance state pointer by 1 for the next sample */ pState = pState + 1; /* Decrement the samples loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; tapCnt = (numTaps - 1u) >> 2u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } /* Calculate remaining number of copies */ tapCnt = (numTaps - 1u) % 0x4u; /* Copy the remaining q31_t data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ uint32_t numTaps = S->numTaps; /* Number of taps in the filter */ uint32_t i, blkCnt; /* Loop counters */ q7_t *pState = S->pState; /* State pointer */ q7_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q7_t *px, *pb; /* Temporary pointers to state and coeff */ q31_t acc = 0; /* Accumlator */ q7_t *pStateCurnt; /* Points to the current sample of the state */ /* S->pState points to state array which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (numTaps - 1u); /* Initialize blkCnt with blockSize */ blkCnt = blockSize; /* Perform filtering upto BlockSize - BlockSize%4 */ while(blkCnt > 0u) { /* Copy one sample at a time into state buffer */ *pStateCurnt++ = *pSrc++; /* Set accumulator to zero */ acc = 0; /* Initialize state pointer of type q7 */ px = pState; /* Initialize coeff pointer of type q7 */ pb = pCoeffs; i = numTaps; while(i > 0u) { /* acc = b[numTaps-1] * x[n-numTaps-1] + b[numTaps-2] * x[n-numTaps-2] + b[numTaps-3] * x[n-numTaps-3] +...+ b[0] * x[0] */ acc += (q15_t) * px++ * *pb++; i--; } /* Store the 1.7 format filter output in destination buffer */ *pDst++ = (q7_t) __SSAT((acc >> 7), 8); /* Advance the state pointer by 1 to process the next sample */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; /* Copy numTaps number of values */ i = (numTaps - 1u); /* Copy q7_t data */ while(i > 0u) { *pStateCurnt++ = *pState++; i--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q7.c
C
lgpl
11,705
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_norm_init_f32.c * * Description: Floating-point NLMS filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup LMS_NORM * @{ */ /** * @brief Initialization function for floating-point normalized LMS filter. * @param[in] *S points to an instance of the floating-point LMS filter structure. * @param[in] numTaps number of filter coefficients. * @param[in] *pCoeffs points to coefficient buffer. * @param[in] *pState points to state buffer. * @param[in] mu step size that controls filter coefficient updates. * @param[in] blockSize number of samples to process. * @return none. * * \par Description: * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * The initial filter coefficients serve as a starting point for the adaptive filter. * <code>pState</code> points to an array of length <code>numTaps+blockSize-1</code> samples, * where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_lms_norm_f32()</code>. */ void arm_lms_norm_init_f32( arm_lms_norm_instance_f32 * S, uint16_t numTaps, float32_t * pCoeffs, float32_t * pState, float32_t mu, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always blockSize + numTaps - 1 */ memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(float32_t)); /* Assign state pointer */ S->pState = pState; /* Assign Step size value */ S->mu = mu; /* Initialise Energy to zero */ S->energy = 0.0f; /* Initialise x0 to zero */ S->x0 = 0.0f; } /** * @} end of LMS_NORM group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_f32.c
C
lgpl
2,938
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_init_q15.c * * Description: Q15 Biquad cascade DirectFormI(DF1) filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1 * @{ */ /** * @details * * @param[in,out] *S points to an instance of the Q15 Biquad cascade structure. * @param[in] numStages number of 2nd order stages in the filter. * @param[in] *pCoeffs points to the filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] postShift Shift to be applied to the accumulator result. Varies according to the coefficients format * @return none * * <b>Coefficient and State Ordering:</b> * * \par * The coefficients are stored in the array <code>pCoeffs</code> in the following order: * <pre> * {b10, 0, b11, b12, a11, a12, b20, 0, b21, b22, a21, a22, ...} * </pre> * where <code>b1x</code> and <code>a1x</code> are the coefficients for the first stage, * <code>b2x</code> and <code>a2x</code> are the coefficients for the second stage, * and so on. The <code>pCoeffs</code> array contains a total of <code>6*numStages</code> values. * The zero coefficient between <code>b1</code> and <code>b2</code> facilities use of 16-bit SIMD instructions on the Cortex-M4. * * \par * The state variables are stored in the array <code>pState</code>. * Each Biquad stage has 4 state variables <code>x[n-1], x[n-2], y[n-1],</code> and <code>y[n-2]</code>. * The state variables are arranged in the <code>pState</code> array as: * <pre> * {x[n-1], x[n-2], y[n-1], y[n-2]} * </pre> * The 4 state variables for stage 1 are first, then the 4 state variables for stage 2, and so on. * The state array has a total length of <code>4*numStages</code> values. * The state variables are updated after each block of data is processed; the coefficients are untouched. */ void arm_biquad_cascade_df1_init_q15( arm_biquad_casd_df1_inst_q15 * S, uint8_t numStages, q15_t * pCoeffs, q15_t * pState, int8_t postShift) { /* Assign filter stages */ S->numStages = numStages; /* Assign postShift to be applied to the output */ S->postShift = postShift; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always 4 * numStages */ memset(pState, 0, (4u * (uint32_t) numStages) * sizeof(q15_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of BiquadCascadeDF1 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q15.c
C
lgpl
3,751
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_decimate_init_q31.c * * Description: Initialization function for Q31 FIR Decimation filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_decimate * @{ */ /** * @brief Initialization function for the Q31 FIR decimator. * @param[in,out] *S points to an instance of the Q31 FIR decimator structure. * @param[in] numTaps number of coefficients in the filter. * @param[in] M decimation factor. * @param[in] *pCoeffs points to the filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of input samples to process per call. * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_LENGTH_ERROR if * <code>blockSize</code> is not a multiple of <code>M</code>. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>numTaps+blockSize-1</code> words where <code>blockSize</code> is the number of input samples passed to <code>arm_fir_decimate_q31()</code>. * <code>M</code> is the decimation factor. */ arm_status arm_fir_decimate_init_q31( arm_fir_decimate_instance_q31 * S, uint16_t numTaps, uint8_t M, q31_t * pCoeffs, q31_t * pState, uint32_t blockSize) { arm_status status; /* The size of the input block must be a multiple of the decimation factor */ if((blockSize % M) != 0u) { /* Set status as ARM_MATH_LENGTH_ERROR */ status = ARM_MATH_LENGTH_ERROR; } else { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear the state buffer. The size is always (blockSize + numTaps - 1) */ memset(pState, 0, (numTaps + (blockSize - 1)) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; /* Assign Decimation factor */ S->M = M; status = ARM_MATH_SUCCESS; } return (status); } /** * @} end of FIR_decimate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_q31.c
C
lgpl
3,296
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_lattice_q31.c * * Description: Q31 FIR lattice filter processing function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Lattice * @{ */ /** * @brief Processing function for the Q31 FIR lattice filter. * @param[in] *S points to an instance of the Q31 FIR lattice structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data * @param[in] blockSize number of samples to process. * @return none. * * @details * <b>Scaling and Overflow Behavior:</b> * In order to avoid overflows the input signal must be scaled down by 2*log2(numStages) bits. */ void arm_fir_lattice_q31( const arm_fir_lattice_instance_q31 * S, q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t *pState; /* State pointer */ q31_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q31_t *px; /* temporary state pointer */ q31_t *pk; /* temporary coefficient pointer */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t fcurr1, fnext1, gcurr1 = 0, gnext1; /* temporary variables for first sample in loop unrolling */ q63_t fcurr2, fnext2, gnext2; /* temporary variables for second sample in loop unrolling */ q63_t fcurr3, fnext3, gnext3; /* temporary variables for third sample in loop unrolling */ q63_t fcurr4, fnext4, gnext4; /* temporary variables for fourth sample in loop unrolling */ uint32_t numStages = S->numStages; /* Length of the filter */ uint32_t blkCnt, stageCnt; /* temporary variables for counts */ pState = &S->pState[0]; blkCnt = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Read two samples from input buffer */ /* f0(n) = x(n) */ fcurr1 = *pSrc++; /* f0(n) = x(n) */ fcurr2 = *pSrc++; /* Initialize coeff pointer */ pk = (pCoeffs); /* Initialize state pointer */ px = pState; /* Read g0(n-1) from state */ gcurr1 = *px; /* Process first sample for first tap */ /* f1(n) = f0(n) + K1 * g0(n-1) */ fnext1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fcurr1; /* g1(n) = f0(n) * K1 + g0(n-1) */ gnext1 = (q31_t) (((q63_t) fcurr1 * (*pk)) >> 31) + gcurr1; /* Process second sample for first tap */ /* for sample 2 processing */ fnext2 = (q31_t) (((q63_t) fcurr1 * (*pk)) >> 31) + fcurr2; gnext2 = (q31_t) (((q63_t) fcurr2 * (*pk)) >> 31) + fcurr1; /* Read next two samples from input buffer */ /* f0(n+2) = x(n+2) */ fcurr3 = *pSrc++; fcurr4 = *pSrc++; /* Copy only last input samples into the state buffer which will be used for next four samples processing */ *px++ = (q31_t) fcurr4; /* Process third sample for first tap */ fnext3 = (q31_t) (((q63_t) fcurr2 * (*pk)) >> 31) + fcurr3; gnext3 = (q31_t) (((q63_t) fcurr3 * (*pk)) >> 31) + fcurr2; /* Process fourth sample for first tap */ fnext4 = (q31_t) (((q63_t) fcurr3 * (*pk)) >> 31) + fcurr4; gnext4 = (q31_t) (((q63_t) fcurr4 * (*pk++)) >> 31) + fcurr3; /* save g1(n) in state buffer for next sample processing */ /* *px++ = gnext4; */ /* Update of f values for next coefficient set processing */ fcurr1 = fnext1; fcurr2 = fnext2; fcurr3 = fnext3; fcurr4 = fnext4; /* Loop unrolling. Process 4 taps at a time . */ stageCnt = (numStages - 1u) >> 2u; /* Loop over the number of taps. Unroll by a factor of 4. ** Repeat until we've computed numStages-3 coefficients. */ /* Process 2nd, 3rd, 4th and 5th taps ... here */ while(stageCnt > 0u) { /* Read g1(n-1), g3(n-1) .... from state */ gcurr1 = *px; /* save g1(n) in state buffer */ *px++ = (q31_t) gnext4; /* Process first sample for 2nd, 6th .. tap */ /* Sample processing for K2, K6.... */ /* f2(n) = f1(n) + K2 * g1(n-1) */ fnext1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fcurr1; /* Process second sample for 2nd, 6th .. tap */ /* for sample 2 processing */ fnext2 = (q31_t) (((q63_t) gnext1 * (*pk)) >> 31) + fcurr2; /* Process third sample for 2nd, 6th .. tap */ fnext3 = (q31_t) (((q63_t) gnext2 * (*pk)) >> 31) + fcurr3; /* Process fourth sample for 2nd, 6th .. tap */ fnext4 = (q31_t) (((q63_t) gnext3 * (*pk)) >> 31) + fcurr4; /* g2(n) = f1(n) * K2 + g1(n-1) */ /* Calculation of state values for next stage */ gnext4 = (q31_t) (((q63_t) fcurr4 * (*pk)) >> 31) + gnext3; gnext3 = (q31_t) (((q63_t) fcurr3 * (*pk)) >> 31) + gnext2; gnext2 = (q31_t) (((q63_t) fcurr2 * (*pk)) >> 31) + gnext1; gnext1 = (q31_t) (((q63_t) fcurr1 * (*pk++)) >> 31) + gcurr1; /* Read g2(n-1), g4(n-1) .... from state */ gcurr1 = *px; /* save g2(n) in state buffer */ *px++ = (q31_t) gnext4; /* Sample processing for K3, K7.... */ /* Process first sample for 3rd, 7th .. tap */ /* f3(n) = f2(n) + K3 * g2(n-1) */ fcurr1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fnext1; /* Process second sample for 3rd, 7th .. tap */ fcurr2 = (q31_t) (((q63_t) gnext1 * (*pk)) >> 31) + fnext2; /* Process third sample for 3rd, 7th .. tap */ fcurr3 = (q31_t) (((q63_t) gnext2 * (*pk)) >> 31) + fnext3; /* Process fourth sample for 3rd, 7th .. tap */ fcurr4 = (q31_t) (((q63_t) gnext3 * (*pk)) >> 31) + fnext4; /* Calculation of state values for next stage */ /* gnext4 = fnext4 * (*pk) + gnext3; */ gnext4 = (q31_t) (((q63_t) fnext4 * (*pk)) >> 31) + gnext3; gnext3 = (q31_t) (((q63_t) fnext3 * (*pk)) >> 31) + gnext2; /* gnext2 = fnext2 * (*pk) + gnext1; */ gnext2 = (q31_t) (((q63_t) fnext2 * (*pk)) >> 31) + gnext1; /* g1(n) = f0(n) * K1 + g0(n-1) */ /* gnext1 = fnext1 * (*pk++) + gcurr1; */ gnext1 = (q31_t) (((q63_t) fnext1 * (*pk++)) >> 31) + gcurr1; /* Read g1(n-1), g3(n-1) .... from state */ gcurr1 = *px; /* save g1(n) in state buffer */ *px++ = (q31_t) gnext4; /* Sample processing for K4, K8.... */ /* Process first sample for 4th, 8th .. tap */ /* f4(n) = f3(n) + K4 * g3(n-1) */ fnext1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fcurr1; /* Process second sample for 4th, 8th .. tap */ /* for sample 2 processing */ fnext2 = (q31_t) (((q63_t) gnext1 * (*pk)) >> 31) + fcurr2; /* Process third sample for 4th, 8th .. tap */ fnext3 = (q31_t) (((q63_t) gnext2 * (*pk)) >> 31) + fcurr3; /* Process fourth sample for 4th, 8th .. tap */ fnext4 = (q31_t) (((q63_t) gnext3 * (*pk)) >> 31) + fcurr4; /* g4(n) = f3(n) * K4 + g3(n-1) */ /* Calculation of state values for next stage */ gnext4 = (q31_t) (((q63_t) fcurr4 * (*pk)) >> 31) + gnext3; gnext3 = (q31_t) (((q63_t) fcurr3 * (*pk)) >> 31) + gnext2; gnext2 = (q31_t) (((q63_t) fcurr2 * (*pk)) >> 31) + gnext1; gnext1 = (q31_t) (((q63_t) fcurr1 * (*pk++)) >> 31) + gcurr1; /* Read g2(n-1), g4(n-1) .... from state */ gcurr1 = *px; /* save g4(n) in state buffer */ *px++ = (q31_t) gnext4; /* Sample processing for K5, K9.... */ /* Process first sample for 5th, 9th .. tap */ /* f5(n) = f4(n) + K5 * g4(n-1) */ fcurr1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fnext1; /* Process second sample for 5th, 9th .. tap */ fcurr2 = (q31_t) (((q63_t) gnext1 * (*pk)) >> 31) + fnext2; /* Process third sample for 5th, 9th .. tap */ fcurr3 = (q31_t) (((q63_t) gnext2 * (*pk)) >> 31) + fnext3; /* Process fourth sample for 5th, 9th .. tap */ fcurr4 = (q31_t) (((q63_t) gnext3 * (*pk)) >> 31) + fnext4; /* Calculation of state values for next stage */ /* g5(n) = f4(n) * K5 + g4(n-1) */ gnext4 = (q31_t) (((q63_t) fnext4 * (*pk)) >> 31) + gnext3; gnext3 = (q31_t) (((q63_t) fnext3 * (*pk)) >> 31) + gnext2; gnext2 = (q31_t) (((q63_t) fnext2 * (*pk)) >> 31) + gnext1; gnext1 = (q31_t) (((q63_t) fnext1 * (*pk++)) >> 31) + gcurr1; stageCnt--; } /* If the (filter length -1) is not a multiple of 4, compute the remaining filter taps */ stageCnt = (numStages - 1u) % 0x4u; while(stageCnt > 0u) { gcurr1 = *px; /* save g value in state buffer */ *px++ = (q31_t) gnext4; /* Process four samples for last three taps here */ fnext1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fcurr1; fnext2 = (q31_t) (((q63_t) gnext1 * (*pk)) >> 31) + fcurr2; fnext3 = (q31_t) (((q63_t) gnext2 * (*pk)) >> 31) + fcurr3; fnext4 = (q31_t) (((q63_t) gnext3 * (*pk)) >> 31) + fcurr4; /* g1(n) = f0(n) * K1 + g0(n-1) */ gnext4 = (q31_t) (((q63_t) fcurr4 * (*pk)) >> 31) + gnext3; gnext3 = (q31_t) (((q63_t) fcurr3 * (*pk)) >> 31) + gnext2; gnext2 = (q31_t) (((q63_t) fcurr2 * (*pk)) >> 31) + gnext1; gnext1 = (q31_t) (((q63_t) fcurr1 * (*pk++)) >> 31) + gcurr1; /* Update of f values for next coefficient set processing */ fcurr1 = fnext1; fcurr2 = fnext2; fcurr3 = fnext3; fcurr4 = fnext4; stageCnt--; } /* The results in the 4 accumulators, store in the destination buffer. */ /* y(n) = fN(n) */ *pDst++ = fcurr1; *pDst++ = (q31_t) fcurr2; *pDst++ = (q31_t) fcurr3; *pDst++ = (q31_t) fcurr4; blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* f0(n) = x(n) */ fcurr1 = *pSrc++; /* Initialize coeff pointer */ pk = (pCoeffs); /* Initialize state pointer */ px = pState; /* read g2(n) from state buffer */ gcurr1 = *px; /* for sample 1 processing */ /* f1(n) = f0(n) + K1 * g0(n-1) */ fnext1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fcurr1; /* g1(n) = f0(n) * K1 + g0(n-1) */ gnext1 = (q31_t) (((q63_t) fcurr1 * (*pk++)) >> 31) + gcurr1; /* save g1(n) in state buffer */ *px++ = fcurr1; /* f1(n) is saved in fcurr1 for next stage processing */ fcurr1 = fnext1; stageCnt = (numStages - 1u); /* stage loop */ while(stageCnt > 0u) { /* read g2(n) from state buffer */ gcurr1 = *px; /* save g1(n) in state buffer */ *px++ = gnext1; /* Sample processing for K2, K3.... */ /* f2(n) = f1(n) + K2 * g1(n-1) */ fnext1 = (q31_t) (((q63_t) gcurr1 * (*pk)) >> 31) + fcurr1; /* g2(n) = f1(n) * K2 + g1(n-1) */ gnext1 = (q31_t) (((q63_t) fcurr1 * (*pk++)) >> 31) + gcurr1; /* f1(n) is saved in fcurr1 for next stage processing */ fcurr1 = fnext1; stageCnt--; } /* y(n) = fN(n) */ *pDst++ = fcurr1; blkCnt--; } #else /* Run the below code for Cortex-M0 */ q31_t fcurr, fnext, gcurr, gnext; /* temporary variables */ uint32_t numStages = S->numStages; /* Length of the filter */ uint32_t blkCnt, stageCnt; /* temporary variables for counts */ pState = &S->pState[0]; blkCnt = blockSize; while(blkCnt > 0u) { /* f0(n) = x(n) */ fcurr = *pSrc++; /* Initialize coeff pointer */ pk = (pCoeffs); /* Initialize state pointer */ px = pState; /* read g0(n-1) from state buffer */ gcurr = *px; /* for sample 1 processing */ /* f1(n) = f0(n) + K1 * g0(n-1) */ fnext = (q31_t) (((q63_t) gcurr * (*pk)) >> 31) + fcurr; /* g1(n) = f0(n) * K1 + g0(n-1) */ gnext = (q31_t) (((q63_t) fcurr * (*pk++)) >> 31) + gcurr; /* save g1(n) in state buffer */ *px++ = fcurr; /* f1(n) is saved in fcurr1 for next stage processing */ fcurr = fnext; stageCnt = (numStages - 1u); /* stage loop */ while(stageCnt > 0u) { /* read g2(n) from state buffer */ gcurr = *px; /* save g1(n) in state buffer */ *px++ = gnext; /* Sample processing for K2, K3.... */ /* f2(n) = f1(n) + K2 * g1(n-1) */ fnext = (q31_t) (((q63_t) gcurr * (*pk)) >> 31) + fcurr; /* g2(n) = f1(n) * K2 + g1(n-1) */ gnext = (q31_t) (((q63_t) fcurr * (*pk++)) >> 31) + gcurr; /* f1(n) is saved in fcurr1 for next stage processing */ fcurr = fnext; stageCnt--; } /* y(n) = fN(n) */ *pDst++ = fcurr; blkCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_Lattice group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_q31.c
C
lgpl
14,405
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_fast_q31.c * * Description: Processing function for the * Q31 Fast Biquad cascade DirectFormI(DF1) filter. * * Target Processor: Cortex-M4/Cortex-M3 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.9 2010/08/27 * Initial version * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1 * @{ */ /** * @details * * @param[in] *S points to an instance of the Q31 Biquad cascade structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * This function is optimized for speed at the expense of fixed-point precision and overflow protection. * The result of each 1.31 x 1.31 multiplication is truncated to 2.30 format. * These intermediate results are added to a 2.30 accumulator. * Finally, the accumulator is saturated and converted to a 1.31 result. * The fast version has the same overflow behavior as the standard version and provides less precision since it discards the low 32 bits of each multiplication result. * In order to avoid overflows completely the input signal must be scaled down by two bits and lie in the range [-0.25 +0.25). Use the intialization function * arm_biquad_cascade_df1_init_q31() to initialize filter structure. * * \par * Refer to the function <code>arm_biquad_cascade_df1_q31()</code> for a slower implementation of this function which uses 64-bit accumulation to provide higher precision. Both the slow and the fast versions use the same instance structure. * Use the function <code>arm_biquad_cascade_df1_init_q31()</code> to initialize the filter structure. */ void arm_biquad_cascade_df1_fast_q31( const arm_biquad_casd_df1_inst_q31 * S, q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t *pIn = pSrc; /* input pointer initialization */ q31_t *pOut = pDst; /* output pointer initialization */ q31_t *pState = S->pState; /* pState pointer initialization */ q31_t *pCoeffs = S->pCoeffs; /* coeff pointer initialization */ q31_t acc; /* accumulator */ q31_t Xn1, Xn2, Yn1, Yn2; /* Filter state variables */ q31_t b0, b1, b2, a1, a2; /* Filter coefficients */ q31_t Xn; /* temporary input */ int32_t shift = (int32_t) S->postShift + 1; /* Shift to be applied to the output */ uint32_t sample, stage = S->numStages; /* loop counters */ do { /* Reading the coefficients */ b0 = *pCoeffs++; b1 = *pCoeffs++; b2 = *pCoeffs++; a1 = *pCoeffs++; a2 = *pCoeffs++; /* Reading the state values */ Xn1 = pState[0]; Xn2 = pState[1]; Yn1 = pState[2]; Yn2 = pState[3]; /* Apply loop unrolling and compute 4 output values simultaneously. */ /* The variables acc ... acc3 hold output values that are being computed: * * acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ sample = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q31_t) (((q63_t) b0 * Xn) >> 32); /* acc += b1 * x[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b1 * (Xn1))) >> 32); /* acc += b[2] * x[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b2 * (Xn2))) >> 32); /* acc += a1 * y[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a1 * (Yn1))) >> 32); /* acc += a2 * y[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a2 * (Yn2))) >> 32); /* The result is converted to 1.31 , Yn2 variable is reused */ Yn2 = acc << shift; /* Store the output in the destination buffer. */ *pOut++ = Yn2; /* Read the second input */ Xn2 = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q31_t) (((q63_t) b0 * (Xn2)) >> 32); /* acc += b1 * x[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b1 * (Xn))) >> 32); /* acc += b[2] * x[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b2 * (Xn1))) >> 32); /* acc += a1 * y[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a1 * (Yn2))) >> 32); /* acc += a2 * y[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a2 * (Yn1))) >> 32); /* The result is converted to 1.31, Yn1 variable is reused */ Yn1 = acc << shift; /* Store the output in the destination buffer. */ *pOut++ = Yn1; /* Read the third input */ Xn1 = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q31_t) (((q63_t) b0 * (Xn1)) >> 32); /* acc += b1 * x[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b1 * (Xn2))) >> 32); /* acc += b[2] * x[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b2 * (Xn))) >> 32); /* acc += a1 * y[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a1 * (Yn1))) >> 32); /* acc += a2 * y[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a2 * (Yn2))) >> 32); /* The result is converted to 1.31, Yn2 variable is reused */ Yn2 = acc << shift; /* Store the output in the destination buffer. */ *pOut++ = Yn2; /* Read the forth input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q31_t) (((q63_t) b0 * (Xn)) >> 32); /* acc += b1 * x[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b1 * (Xn1))) >> 32); /* acc += b[2] * x[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b2 * (Xn2))) >> 32); /* acc += a1 * y[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a1 * (Yn2))) >> 32); /* acc += a2 * y[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a2 * (Yn1))) >> 32); /* The result is converted to 1.31, Yn1 variable is reused */ Yn1 = acc << shift; /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ Xn2 = Xn1; Xn1 = Xn; /* Store the output in the destination buffer. */ *pOut++ = Yn1; /* decrement the loop counter */ sample--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ sample = (blockSize & 0x3u); while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q31_t) (((q63_t) b0 * (Xn)) >> 32); /* acc += b1 * x[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b1 * (Xn1))) >> 32); /* acc += b[2] * x[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) b2 * (Xn2))) >> 32); /* acc += a1 * y[n-1] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a1 * (Yn1))) >> 32); /* acc += a2 * y[n-2] */ acc = (q31_t) ((((q63_t) acc << 32) + ((q63_t) a2 * (Yn2))) >> 32); /* The result is converted to 1.31 */ acc = acc << shift; /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ Xn2 = Xn1; Xn1 = Xn; Yn2 = Yn1; Yn1 = acc; /* Store the output in the destination buffer. */ *pOut++ = acc; /* decrement the loop counter */ sample--; } /* The first stage goes from the input buffer to the output buffer. */ /* Subsequent stages occur in-place in the output buffer */ pIn = pDst; /* Reset to destination pointer */ pOut = pDst; /* Store the updated state variables back into the pState array */ *pState++ = Xn1; *pState++ = Xn2; *pState++ = Yn1; *pState++ = Yn2; } while(--stage); } /** * @} end of BiquadCascadeDF1 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q31.c
C
lgpl
10,063
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_sparse_init_q7.c * * Description: Q7 sparse FIR filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Sparse * @{ */ /** * @brief Initialization function for the Q7 sparse FIR filter. * @param[in,out] *S points to an instance of the Q7 sparse FIR structure. * @param[in] numTaps number of nonzero coefficients in the filter. * @param[in] *pCoeffs points to the array of filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] *pTapDelay points to the array of offset times. * @param[in] maxDelay maximum offset time supported. * @param[in] blockSize number of samples that will be processed per block. * @return none * * <b>Description:</b> * \par * <code>pCoeffs</code> holds the filter coefficients and has length <code>numTaps</code>. * <code>pState</code> holds the filter's state variables and must be of length * <code>maxDelay + blockSize</code>, where <code>maxDelay</code> * is the maximum number of delay line values. * <code>blockSize</code> is the * number of samples processed by the <code>arm_fir_sparse_q7()</code> function. */ void arm_fir_sparse_init_q7( arm_fir_sparse_instance_q7 * S, uint16_t numTaps, q7_t * pCoeffs, q7_t * pState, int32_t * pTapDelay, uint16_t maxDelay, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Assign TapDelay pointer */ S->pTapDelay = pTapDelay; /* Assign MaxDelay */ S->maxDelay = maxDelay; /* reset the stateIndex to 0 */ S->stateIndex = 0u; /* Clear state buffer and size is always maxDelay + blockSize */ memset(pState, 0, (maxDelay + blockSize) * sizeof(q7_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR_Sparse group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q7.c
C
lgpl
2,984
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_norm_q15.c * * Description: Q15 NLMS filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup LMS_NORM * @{ */ /** * @brief Processing function for Q15 normalized LMS filter. * @param[in] *S points to an instance of the Q15 normalized LMS filter structure. * @param[in] *pSrc points to the block of input data. * @param[in] *pRef points to the block of reference data. * @param[out] *pOut points to the block of output data. * @param[out] *pErr points to the block of error data. * @param[in] blockSize number of samples to process. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using a 64-bit internal accumulator. * Both coefficients and state variables are represented in 1.15 format and * multiplications yield a 2.30 result. The 2.30 intermediate results are * accumulated in a 64-bit accumulator in 34.30 format. * There is no risk of internal overflow with this approach and the full * precision of intermediate multiplications is preserved. After all additions * have been performed, the accumulator is truncated to 34.15 format by * discarding low 15 bits. Lastly, the accumulator is saturated to yield a * result in 1.15 format. * * \par * In this filter, filter coefficients are updated for each sample and the updation of filter cofficients are saturted. * */ void arm_lms_norm_q15( arm_lms_norm_instance_q15 * S, q15_t * pSrc, q15_t * pRef, q15_t * pOut, q15_t * pErr, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ q15_t *px, *pb; /* Temporary pointers for state and coefficient buffers */ q15_t mu = S->mu; /* Adaptive factor */ uint32_t numTaps = S->numTaps; /* Number of filter coefficients in the filter */ uint32_t tapCnt, blkCnt; /* Loop counters */ q31_t energy; /* Energy of the input */ q63_t acc; /* Accumulator */ q15_t e = 0, d = 0; /* error, reference data sample */ q15_t w = 0, in; /* weight factor and state */ q15_t x0; /* temporary variable to hold input sample */ uint32_t shift = (uint32_t) S->postShift + 1u; /* Shift to be applied to the output */ q15_t errorXmu, oneByEnergy; /* Temporary variables to store error and mu product and reciprocal of energy */ q15_t postShift; /* Post shift to be applied to weight after reciprocal calculation */ q31_t coef; /* Teporary variable for coefficient */ energy = S->energy; x0 = S->x0; /* S->pState points to buffer which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Loop over blockSize number of values */ blkCnt = blockSize; #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ while(blkCnt > 0u) { /* Copy the new input sample into the state buffer */ *pStateCurnt++ = *pSrc; /* Initialize pState pointer */ px = pState; /* Initialize coeff pointer */ pb = (pCoeffs); /* Read the sample from input buffer */ in = *pSrc++; /* Update the energy calculation */ energy -= (((q31_t) x0 * (x0)) >> 15); energy += (((q31_t) in * (in)) >> 15); /* Set the accumulator to zero */ acc = 0; /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ acc = __SMLALD(*__SIMD32(px)++, (*__SIMD32(pb)++), acc); acc = __SMLALD(*__SIMD32(px)++, (*__SIMD32(pb)++), acc); /* Decrement the loop counter */ tapCnt--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = numTaps % 0x4u; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ acc += (((q31_t) * px++ * (*pb++))); /* Decrement the loop counter */ tapCnt--; } /* Converting the result to 1.15 format */ acc = __SSAT((acc >> (16u - shift)), 16u); /* Store the result from accumulator into the destination buffer. */ *pOut++ = (q15_t) acc; /* Compute and store error */ d = *pRef++; e = d - (q15_t) acc; *pErr++ = e; /* Calculation of 1/energy */ postShift = arm_recip_q15((q15_t) energy + DELTA_Q15, &oneByEnergy, S->recipTable); /* Calculation of e * mu value */ errorXmu = (q15_t) (((q31_t) e * mu) >> 15); /* Calculation of (e * mu) * (1/energy) value */ acc = (((q31_t) errorXmu * oneByEnergy) >> (15 - postShift)); /* Weighting factor for the normalized version */ w = (q15_t) __SSAT((q31_t) acc, 16); /* Initialize pState pointer */ px = pState; /* Initialize coeff pointer */ pb = (pCoeffs); /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2; /* Update filter coefficients */ while(tapCnt > 0u) { coef = *pb + (((q31_t) w * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); coef = *pb + (((q31_t) w * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); coef = *pb + (((q31_t) w * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); coef = *pb + (((q31_t) w * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); /* Decrement the loop counter */ tapCnt--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = numTaps % 0x4u; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ coef = *pb + (((q31_t) w * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); /* Decrement the loop counter */ tapCnt--; } /* Read the sample from state buffer */ x0 = *pState; /* Advance state pointer by 1 for the next sample */ pState = pState + 1u; /* Decrement the loop counter */ blkCnt--; } /* Save energy and x0 values for the next frame */ S->energy = (q15_t) energy; S->x0 = x0; /* Processing is complete. Now copy the last numTaps - 1 samples to the satrt of the state buffer. This prepares the state buffer for the next function call. */ /* Points to the start of the pState buffer */ pStateCurnt = S->pState; /* Calculation of count for copying integer writes */ tapCnt = (numTaps - 1u) >> 2; while(tapCnt > 0u) { *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; tapCnt--; } /* Calculation of count for remaining q15_t data */ tapCnt = (numTaps - 1u) % 0x4u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ while(blkCnt > 0u) { /* Copy the new input sample into the state buffer */ *pStateCurnt++ = *pSrc; /* Initialize pState pointer */ px = pState; /* Initialize pCoeffs pointer */ pb = pCoeffs; /* Read the sample from input buffer */ in = *pSrc++; /* Update the energy calculation */ energy -= (((q31_t) x0 * (x0)) >> 15); energy += (((q31_t) in * (in)) >> 15); /* Set the accumulator to zero */ acc = 0; /* Loop over numTaps number of values */ tapCnt = numTaps; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ acc += (((q31_t) * px++ * (*pb++))); /* Decrement the loop counter */ tapCnt--; } /* Converting the result to 1.15 format */ acc = __SSAT((acc >> (16u - shift)), 16u); /* Store the result from accumulator into the destination buffer. */ *pOut++ = (q15_t) acc; /* Compute and store error */ d = *pRef++; e = d - (q15_t) acc; *pErr++ = e; /* Calculation of 1/energy */ postShift = arm_recip_q15((q15_t) energy + DELTA_Q15, &oneByEnergy, S->recipTable); /* Calculation of e * mu value */ errorXmu = (q15_t) (((q31_t) e * mu) >> 15); /* Calculation of (e * mu) * (1/energy) value */ acc = (((q31_t) errorXmu * oneByEnergy) >> (15 - postShift)); /* Weighting factor for the normalized version */ w = (q15_t) __SSAT((q31_t) acc, 16); /* Initialize pState pointer */ px = pState; /* Initialize coeff pointer */ pb = (pCoeffs); /* Loop over numTaps number of values */ tapCnt = numTaps; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ coef = *pb + (((q31_t) w * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); /* Decrement the loop counter */ tapCnt--; } /* Read the sample from state buffer */ x0 = *pState; /* Advance state pointer by 1 for the next sample */ pState = pState + 1u; /* Decrement the loop counter */ blkCnt--; } /* Save energy and x0 values for the next frame */ S->energy = (q15_t) energy; S->x0 = x0; /* Processing is complete. Now copy the last numTaps - 1 samples to the satrt of the state buffer. This prepares the state buffer for the next function call. */ /* Points to the start of the pState buffer */ pStateCurnt = S->pState; /* copy (numTaps - 1u) data */ tapCnt = (numTaps - 1u); /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of LMS_NORM group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_q15.c
C
lgpl
11,389
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_decimate_q31.c * * Description: Q31 FIR Decimator. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_decimate * @{ */ /** * @brief Processing function for the Q31 FIR decimator. * @param[in] *S points to an instance of the Q31 FIR decimator structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data * @param[in] blockSize number of input samples to process per call. * @return none * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using an internal 64-bit accumulator. * The accumulator has a 2.62 format and maintains full precision of the intermediate multiplication results but provides only a single guard bit. * Thus, if the accumulator result overflows it wraps around rather than clip. * In order to avoid overflows completely the input signal must be scaled down by log2(numTaps) bits (where log2 is read as log to the base 2). * After all multiply-accumulates are performed, the 2.62 accumulator is truncated to 1.32 format and then saturated to 1.31 format. * * \par * Refer to the function <code>arm_fir_decimate_fast_q31()</code> for a faster but less precise implementation of this function for Cortex-M3 and Cortex-M4. */ void arm_fir_decimate_q31( const arm_fir_decimate_instance_q31 * S, q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t *pState = S->pState; /* State pointer */ q31_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q31_t *pStateCurnt; /* Points to the current sample of the state */ q31_t x0, c0; /* Temporary variables to hold state and coefficient values */ q31_t *px; /* Temporary pointers for state buffer */ q31_t *pb; /* Temporary pointers for coefficient buffer */ q63_t sum0; /* Accumulator */ uint32_t numTaps = S->numTaps; /* Number of taps */ uint32_t i, tapCnt, blkCnt, outBlockSize = blockSize / S->M; /* Loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ /* S->pState buffer contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (numTaps - 1u); /* Total number of output samples to be computed */ blkCnt = outBlockSize; while(blkCnt > 0u) { /* Copy decimation factor number of new input samples into the state buffer */ i = S->M; do { *pStateCurnt++ = *pSrc++; } while(--i); /* Set accumulator to zero */ sum0 = 0; /* Initialize state pointer */ px = pState; /* Initialize coeff pointer */ pb = pCoeffs; /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2; /* Loop over the number of taps. Unroll by a factor of 4. ** Repeat until we've computed numTaps-4 coefficients. */ while(tapCnt > 0u) { /* Read the b[numTaps-1] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-1] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Read the b[numTaps-2] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-2] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Read the b[numTaps-3] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-3] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Read the b[numTaps-4] coefficient */ c0 = *(pb++); /* Read x[n-numTaps-4] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Decrement the loop counter */ tapCnt--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = numTaps % 0x4u; while(tapCnt > 0u) { /* Read coefficients */ c0 = *(pb++); /* Fetch 1 state variable */ x0 = *(px++); /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Decrement the loop counter */ tapCnt--; } /* Advance the state pointer by the decimation factor * to process the next group of decimation factor number samples */ pState = pState + S->M; /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = (q31_t) (sum0 >> 31); /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; i = (numTaps - 1u) >> 2u; /* copy data */ while(i > 0u) { *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; /* Decrement the loop counter */ i--; } i = (numTaps - 1u) % 0x04u; /* copy data */ while(i > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ i--; } #else /* Run the below code for Cortex-M0 */ /* S->pState buffer contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (numTaps - 1u); /* Total number of output samples to be computed */ blkCnt = outBlockSize; while(blkCnt > 0u) { /* Copy decimation factor number of new input samples into the state buffer */ i = S->M; do { *pStateCurnt++ = *pSrc++; } while(--i); /* Set accumulator to zero */ sum0 = 0; /* Initialize state pointer */ px = pState; /* Initialize coeff pointer */ pb = pCoeffs; tapCnt = numTaps; while(tapCnt > 0u) { /* Read coefficients */ c0 = *pb++; /* Fetch 1 state variable */ x0 = *px++; /* Perform the multiply-accumulate */ sum0 += (q63_t) x0 *c0; /* Decrement the loop counter */ tapCnt--; } /* Advance the state pointer by the decimation factor * to process the next group of decimation factor number samples */ pState = pState + S->M; /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = (q31_t) (sum0 >> 31); /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the start of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; i = numTaps - 1u; /* copy data */ while(i > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ i--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_decimate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_q31.c
C
lgpl
8,462
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_sparse_init_q15.c * * Description: Q15 sparse FIR filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Sparse * @{ */ /** * @brief Initialization function for the Q15 sparse FIR filter. * @param[in,out] *S points to an instance of the Q15 sparse FIR structure. * @param[in] numTaps number of nonzero coefficients in the filter. * @param[in] *pCoeffs points to the array of filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] *pTapDelay points to the array of offset times. * @param[in] maxDelay maximum offset time supported. * @param[in] blockSize number of samples that will be processed per block. * @return none * * <b>Description:</b> * \par * <code>pCoeffs</code> holds the filter coefficients and has length <code>numTaps</code>. * <code>pState</code> holds the filter's state variables and must be of length * <code>maxDelay + blockSize</code>, where <code>maxDelay</code> * is the maximum number of delay line values. * <code>blockSize</code> is the * number of words processed by <code>arm_fir_sparse_q15()</code> function. */ void arm_fir_sparse_init_q15( arm_fir_sparse_instance_q15 * S, uint16_t numTaps, q15_t * pCoeffs, q15_t * pState, int32_t * pTapDelay, uint16_t maxDelay, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Assign TapDelay pointer */ S->pTapDelay = pTapDelay; /* Assign MaxDelay */ S->maxDelay = maxDelay; /* reset the stateIndex to 0 */ S->stateIndex = 0u; /* Clear state buffer and size is always maxDelay + blockSize */ memset(pState, 0, (maxDelay + blockSize) * sizeof(q15_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR_Sparse group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q15.c
C
lgpl
2,988
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_conv_partial_q15.c * * Description: Partial convolution of Q15 sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup PartialConv * @{ */ /** * @brief Partial convolution of Q15 sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. * @param[in] firstIndex is the first output sample to start with. * @param[in] numPoints is the number of output points to be computed. * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. * * Refer to <code>arm_conv_partial_fast_q15()</code> for a faster but less precise version of this function for Cortex-M3 and Cortex-M4. */ arm_status arm_conv_partial_q15( q15_t * pSrcA, uint32_t srcALen, q15_t * pSrcB, uint32_t srcBLen, q15_t * pDst, uint32_t firstIndex, uint32_t numPoints) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t *pIn1; /* inputA pointer */ q15_t *pIn2; /* inputB pointer */ q15_t *pOut = pDst; /* output pointer */ q63_t sum, acc0, acc1, acc2, acc3; /* Accumulator */ q15_t *px; /* Intermediate inputA pointer */ q15_t *py; /* Intermediate inputB pointer */ q15_t *pSrc1, *pSrc2; /* Intermediate pointers */ q31_t x0, x1, x2, x3, c0; /* Temporary input variables */ uint32_t j, k, count, check, blkCnt; int32_t blockSize1, blockSize2, blockSize3; /* loop counter */ arm_status status; /* status of Partial convolution */ q31_t *pb; /* 32 bit pointer for inputB buffer */ /* Check for range of output samples to be calculated */ if((firstIndex + numPoints) > ((srcALen + (srcBLen - 1u)))) { /* Set status as ARM_MATH_ARGUMENT_ERROR */ status = ARM_MATH_ARGUMENT_ERROR; } else { /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = pSrcA; /* Initialization of inputB pointer */ pIn2 = pSrcB; } else { /* Initialization of inputA pointer */ pIn1 = pSrcB; /* Initialization of inputB pointer */ pIn2 = pSrcA; /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; } /* Conditions to check which loopCounter holds * the first and last indices of the output samples to be calculated. */ check = firstIndex + numPoints; blockSize3 = ((int32_t) check - (int32_t) srcALen); blockSize3 = (blockSize3 > 0) ? blockSize3 : 0; blockSize1 = (((int32_t) srcBLen - 1) - (int32_t) firstIndex); blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : (int32_t) numPoints) : 0; blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + (int32_t) firstIndex); blockSize2 = (blockSize2 > 0) ? blockSize2 : 0; /* conv(x,y) at n = x[n] * y[0] + x[n-1] * y[1] + x[n-2] * y[2] + ...+ x[n-N+1] * y[N -1] */ /* The function is internally * divided into three stages according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first stage of the * algorithm, the multiplications increase by one for every iteration. * In the second stage of the algorithm, srcBLen number of multiplications are done. * In the third stage of the algorithm, the multiplications decrease by one * for every iteration. */ /* Set the output pointer to point to the firstIndex * of the output sample to be calculated. */ pOut = pDst + firstIndex; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[0] * sum = x[0] * y[1] + x[1] * y[0] * .... * sum = x[0] * y[srcBlen - 1] + x[1] * y[srcBlen - 2] +...+ x[srcBLen - 1] * y[0] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed. Since the partial convolution starts from firstIndex Number of Macs to be performed is firstIndex + 1 */ count = 1u + firstIndex; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + firstIndex; py = pSrc2; /* ------------------------ * Stage1 process * ----------------------*/ /* For loop unrolling by 4, this stage is divided into two. */ /* First part of this stage computes the MAC operations less than 4 */ /* Second part of this stage computes the MAC operations greater than or equal to 4 */ /* The first part of the stage starts here */ while((count < 4u) && (blockSize1 > 0)) { /* Accumulator is made zero for every iteration */ sum = 0; /* Loop over number of MAC operations between * inputA samples and inputB samples */ k = count; while(k > 0u) { /* Perform the multiply-accumulates */ sum = __SMLALD(*px++, *py--, sum); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q15_t) (__SSAT((sum >> 15), 16)); /* Update the inputA and inputB pointers for next MAC calculation */ py = ++pSrc2; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* The second part of the stage starts here */ /* The internal loop, over count, is unrolled by 4 */ /* To, read the last two inputB samples using SIMD: * y[srcBLen] and y[srcBLen-1] coefficients, py is decremented by 1 */ py = py - 1; while(blockSize1 > 0) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ /* x[0], x[1] are multiplied with y[srcBLen - 1], y[srcBLen - 2] respectively */ sum = __SMLALDX(*__SIMD32(px)++, *__SIMD32(py)--, sum); /* x[2], x[3] are multiplied with y[srcBLen - 3], y[srcBLen - 4] respectively */ sum = __SMLALDX(*__SIMD32(px)++, *__SIMD32(py)--, sum); /* Decrement the loop counter */ k--; } /* For the next MAC operations, the pointer py is used without SIMD * So, py is incremented by 1 */ py = py + 1u; /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum = __SMLALD(*px++, *py--, sum); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q15_t) (__SSAT((sum >> 15), 16)); /* Update the inputA and inputB pointers for next MAC calculation */ py = ++pSrc2 - 1u; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[srcBLen-1] + x[1] * y[srcBLen-2] +...+ x[srcBLen-1] * y[0] * sum = x[1] * y[srcBLen-1] + x[2] * y[srcBLen-2] +...+ x[srcBLen] * y[0] * .... * sum = x[srcALen-srcBLen-2] * y[srcBLen-1] + x[srcALen] * y[srcBLen-2] +...+ x[srcALen-1] * y[0] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* Initialize inputB pointer of type q31 */ pb = (q31_t *) (py - 1u); /* count is the index by which the pointer pIn1 to be incremented */ count = 1u; /* -------------------- * Stage2 process * -------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = ((uint32_t) blockSize2 >> 2u); while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* read x[0], x[1] samples */ x0 = *(q31_t *) (px++); /* read x[1], x[2] samples */ x1 = *(q31_t *) (px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read the last two inputB samples using SIMD: * y[srcBLen - 1] and y[srcBLen - 2] */ c0 = *(pb--); /* acc0 += x[0] * y[srcBLen - 1] + x[1] * y[srcBLen - 2] */ acc0 = __SMLALDX(x0, c0, acc0); /* acc1 += x[1] * y[srcBLen - 1] + x[2] * y[srcBLen - 2] */ acc1 = __SMLALDX(x1, c0, acc1); /* Read x[2], x[3] */ x2 = *(q31_t *) (px++); /* Read x[3], x[4] */ x3 = *(q31_t *) (px++); /* acc2 += x[2] * y[srcBLen - 1] + x[3] * y[srcBLen - 2] */ acc2 = __SMLALDX(x2, c0, acc2); /* acc3 += x[3] * y[srcBLen - 1] + x[4] * y[srcBLen - 2] */ acc3 = __SMLALDX(x3, c0, acc3); /* Read y[srcBLen - 3] and y[srcBLen - 4] */ c0 = *(pb--); /* acc0 += x[2] * y[srcBLen - 3] + x[3] * y[srcBLen - 4] */ acc0 = __SMLALDX(x2, c0, acc0); /* acc1 += x[3] * y[srcBLen - 3] + x[4] * y[srcBLen - 4] */ acc1 = __SMLALDX(x3, c0, acc1); /* Read x[4], x[5] */ x0 = *(q31_t *) (px++); /* Read x[5], x[6] */ x1 = *(q31_t *) (px++); /* acc2 += x[4] * y[srcBLen - 3] + x[5] * y[srcBLen - 4] */ acc2 = __SMLALDX(x0, c0, acc2); /* acc3 += x[5] * y[srcBLen - 3] + x[6] * y[srcBLen - 4] */ acc3 = __SMLALDX(x1, c0, acc3); } while(--k); /* For the next MAC operations, SIMD is not used * So, the 16 bit pointer if inputB, py is updated */ py = (q15_t *) pb; py = py + 1; /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; if(k == 1u) { /* Read y[srcBLen - 5] */ c0 = *(py); #ifdef ARM_MATH_BIG_ENDIAN c0 = c0 << 16u; #endif /* #ifdef ARM_MATH_BIG_ENDIAN */ /* Read x[7] */ x3 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALD(x0, c0, acc0); acc1 = __SMLALD(x1, c0, acc1); acc2 = __SMLALDX(x1, c0, acc2); acc3 = __SMLALDX(x3, c0, acc3); } if(k == 2u) { /* Read y[srcBLen - 5], y[srcBLen - 6] */ c0 = *(pb); /* Read x[7], x[8] */ x3 = *(q31_t *) px++; /* Read x[9] */ x2 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALDX(x0, c0, acc0); acc1 = __SMLALDX(x1, c0, acc1); acc2 = __SMLALDX(x3, c0, acc2); acc3 = __SMLALDX(x2, c0, acc3); } if(k == 3u) { /* Read y[srcBLen - 5], y[srcBLen - 6] */ c0 = *pb--; /* Read x[7], x[8] */ x3 = *(q31_t *) px++; /* Read x[9] */ x2 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALDX(x0, c0, acc0); acc1 = __SMLALDX(x1, c0, acc1); acc2 = __SMLALDX(x3, c0, acc2); acc3 = __SMLALDX(x2, c0, acc3); #ifdef ARM_MATH_BIG_ENDIAN /* Read y[srcBLen - 7] */ c0 = (*pb); c0 = (c0) << 16; #else /* Read y[srcBLen - 7] */ c0 = (q15_t) (*pb >> 16); #endif /* #ifdef ARM_MATH_BIG_ENDIAN */ /* Read x[10] */ x3 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALDX(x1, c0, acc0); acc1 = __SMLALD(x2, c0, acc1); acc2 = __SMLALDX(x2, c0, acc2); acc3 = __SMLALDX(x3, c0, acc3); } /* Store the results in the accumulators in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pOut)++ = __PKHBT(__SSAT((acc0 >> 15), 16), __SSAT((acc1 >> 15), 16), 16); *__SIMD32(pOut)++ = __PKHBT(__SSAT((acc2 >> 15), 16), __SSAT((acc3 >> 15), 16), 16); #else *__SIMD32(pOut)++ = __PKHBT(__SSAT((acc1 >> 15), 16), __SSAT((acc0 >> 15), 16), 16); *__SIMD32(pOut)++ = __PKHBT(__SSAT((acc3 >> 15), 16), __SSAT((acc2 >> 15), 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pSrc2; pb = (q31_t *) (py - 1); /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = (uint32_t) blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ sum += (q63_t) ((q31_t) * px++ * *py--); sum += (q63_t) ((q31_t) * px++ * *py--); sum += (q63_t) ((q31_t) * px++ * *py--); sum += (q63_t) ((q31_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += (q63_t) ((q31_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q15_t) (__SSAT(sum >> 15, 16)); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = (uint32_t) blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* srcBLen number of MACS should be performed */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += (q63_t) ((q31_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q15_t) (__SSAT(sum >> 15, 16)); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[srcBLen-1] + x[srcALen-srcBLen+2] * y[srcBLen-2] +...+ x[srcALen-1] * y[1] * sum += x[srcALen-srcBLen+2] * y[srcBLen-1] + x[srcALen-srcBLen+3] * y[srcBLen-2] +...+ x[srcALen-1] * y[2] * .... * sum += x[srcALen-2] * y[srcBLen-1] + x[srcALen-1] * y[srcBLen-2] * sum += x[srcALen-1] * y[srcBLen-1] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = srcBLen - 1u; /* Working pointer of inputA */ pSrc1 = (pIn1 + srcALen) - (srcBLen - 1u); px = pSrc1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); pIn2 = pSrc2 - 1u; py = pIn2; /* ------------------- * Stage3 process * ------------------*/ /* For loop unrolling by 4, this stage is divided into two. */ /* First part of this stage computes the MAC operations greater than 4 */ /* Second part of this stage computes the MAC operations less than or equal to 4 */ /* The first part of the stage starts here */ j = count >> 2u; while((j > 0u) && (blockSize3 > 0)) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[srcALen - srcBLen + 1], x[srcALen - srcBLen + 2] are multiplied * with y[srcBLen - 1], y[srcBLen - 2] respectively */ sum = __SMLALDX(*__SIMD32(px)++, *__SIMD32(py)--, sum); /* x[srcALen - srcBLen + 3], x[srcALen - srcBLen + 4] are multiplied * with y[srcBLen - 3], y[srcBLen - 4] respectively */ sum = __SMLALDX(*__SIMD32(px)++, *__SIMD32(py)--, sum); /* Decrement the loop counter */ k--; } /* For the next MAC operations, the pointer py is used without SIMD * So, py is incremented by 1 */ py = py + 1u; /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* sum += x[srcALen - srcBLen + 5] * y[srcBLen - 5] */ sum = __SMLALD(*px++, *py--, sum); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q15_t) (__SSAT((sum >> 15), 16)); /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pIn2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; j--; } /* The second part of the stage starts here */ /* SIMD is not used for the next MAC operations, * so pointer py is updated to read only one sample at a time */ py = py + 1u; while(blockSize3 > 0) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count; while(k > 0u) { /* Perform the multiply-accumulates */ /* sum += x[srcALen-1] * y[srcBLen-1] */ sum = __SMLALD(*px++, *py--, sum); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q15_t) (__SSAT((sum >> 15), 16)); /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pSrc2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; } /* set status as ARM_MATH_SUCCESS */ status = ARM_MATH_SUCCESS; } /* Return to application */ return (status); #else /* Run the below code for Cortex-M0 */ q15_t *pIn1 = pSrcA; /* inputA pointer */ q15_t *pIn2 = pSrcB; /* inputB pointer */ q63_t sum; /* Accumulator */ uint32_t i, j; /* loop counters */ arm_status status; /* status of Partial convolution */ /* Check for range of output samples to be calculated */ if((firstIndex + numPoints) > ((srcALen + (srcBLen - 1u)))) { /* Set status as ARM_ARGUMENT_ERROR */ status = ARM_MATH_ARGUMENT_ERROR; } else { /* Loop to calculate convolution for output length number of values */ for (i = firstIndex; i <= (firstIndex + numPoints - 1); i++) { /* Initialize sum with zero to carry on MAC operations */ sum = 0; /* Loop to perform MAC operations according to convolution equation */ for (j = 0; j <= i; j++) { /* Check the array limitations */ if(((i - j) < srcBLen) && (j < srcALen)) { /* z[i] += x[i-j] * y[j] */ sum += ((q31_t) pIn1[j] * (pIn2[i - j])); } } /* Store the output in the destination buffer */ pDst[i] = (q15_t) __SSAT((sum >> 15u), 16u); } /* set status as ARM_SUCCESS as there are no argument errors */ status = ARM_MATH_SUCCESS; } return (status); #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of PartialConv group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q15.c
C
lgpl
24,581
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df2T_f32.c * * Description: Processing function for the floating-point transposed * direct form II Biquad cascade filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @defgroup BiquadCascadeDF2T Biquad Cascade IIR Filters Using a Direct Form II Transposed Structure * * This set of functions implements arbitrary order recursive (IIR) filters using a transposed direct form II structure. * The filters are implemented as a cascade of second order Biquad sections. * These functions provide a slight memory savings as compared to the direct form I Biquad filter functions. * Only floating-point data is supported. * * This function operate on blocks of input and output data and each call to the function * processes <code>blockSize</code> samples through the filter. * <code>pSrc</code> points to the array of input data and * <code>pDst</code> points to the array of output data. * Both arrays contain <code>blockSize</code> values. * * \par Algorithm * Each Biquad stage implements a second order filter using the difference equation: * <pre> * y[n] = b0 * x[n] + d1 * d1 = b1 * x[n] + a1 * y[n] + d2 * d2 = b2 * x[n] + a2 * y[n] * </pre> * where d1 and d2 represent the two state values. * * \par * A Biquad filter using a transposed Direct Form II structure is shown below. * \image html BiquadDF2Transposed.gif "Single transposed Direct Form II Biquad" * Coefficients <code>b0, b1, and b2 </code> multiply the input signal <code>x[n]</code> and are referred to as the feedforward coefficients. * Coefficients <code>a1</code> and <code>a2</code> multiply the output signal <code>y[n]</code> and are referred to as the feedback coefficients. * Pay careful attention to the sign of the feedback coefficients. * Some design tools flip the sign of the feedback coefficients: * <pre> * y[n] = b0 * x[n] + d1; * d1 = b1 * x[n] - a1 * y[n] + d2; * d2 = b2 * x[n] - a2 * y[n]; * </pre> * In this case the feedback coefficients <code>a1</code> and <code>a2</code> must be negated when used with the CMSIS DSP Library. * * \par * Higher order filters are realized as a cascade of second order sections. * <code>numStages</code> refers to the number of second order stages used. * For example, an 8th order filter would be realized with <code>numStages=4</code> second order stages. * A 9th order filter would be realized with <code>numStages=5</code> second order stages with the * coefficients for one of the stages configured as a first order filter (<code>b2=0</code> and <code>a2=0</code>). * * \par * <code>pState</code> points to the state variable array. * Each Biquad stage has 2 state variables <code>d1</code> and <code>d2</code>. * The state variables are arranged in the <code>pState</code> array as: * <pre> * {d11, d12, d21, d22, ...} * </pre> * where <code>d1x</code> refers to the state variables for the first Biquad and * <code>d2x</code> refers to the state variables for the second Biquad. * The state array has a total length of <code>2*numStages</code> values. * The state variables are updated after each block of data is processed; the coefficients are untouched. * * \par * The CMSIS library contains Biquad filters in both Direct Form I and transposed Direct Form II. * The advantage of the Direct Form I structure is that it is numerically more robust for fixed-point data types. * That is why the Direct Form I structure supports Q15 and Q31 data types. * The transposed Direct Form II structure, on the other hand, requires a wide dynamic range for the state variables <code>d1</code> and <code>d2</code>. * Because of this, the CMSIS library only has a floating-point version of the Direct Form II Biquad. * The advantage of the Direct Form II Biquad is that it requires half the number of state variables, 2 rather than 4, per Biquad stage. * * \par Instance Structure * The coefficients and state variables for a filter are stored together in an instance data structure. * A separate instance structure must be defined for each filter. * Coefficient arrays may be shared among several instances while state variable arrays cannot be shared. * * \par Init Functions * There is also an associated initialization function. * The initialization function performs following operations: * - Sets the values of the internal structure fields. * - Zeros out the values in the state buffer. * * \par * Use of the initialization function is optional. * However, if the initialization function is used, then the instance structure cannot be placed into a const data section. * To place an instance structure into a const data section, the instance structure must be manually initialized. * Set the values in the state buffer to zeros before static initialization. * For example, to statically initialize the instance structure use * <pre> * arm_biquad_cascade_df2T_instance_f32 S1 = {numStages, pState, pCoeffs}; * </pre> * where <code>numStages</code> is the number of Biquad stages in the filter; <code>pState</code> is the address of the state buffer. * <code>pCoeffs</code> is the address of the coefficient buffer; * */ /** * @addtogroup BiquadCascadeDF2T * @{ */ /** * @brief Processing function for the floating-point transposed direct form II Biquad cascade filter. * @param[in] *S points to an instance of the filter data structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data * @param[in] blockSize number of samples to process. * @return none. */ void arm_biquad_cascade_df2T_f32( const arm_biquad_cascade_df2T_instance_f32 * S, float32_t * pSrc, float32_t * pDst, uint32_t blockSize) { float32_t *pIn = pSrc; /* source pointer */ float32_t *pOut = pDst; /* destination pointer */ float32_t *pState = S->pState; /* State pointer */ float32_t *pCoeffs = S->pCoeffs; /* coefficient pointer */ float32_t acc0; /* Simulates the accumulator */ float32_t b0, b1, b2, a1, a2; /* Filter coefficients */ float32_t Xn; /* temporary input */ float32_t d1, d2; /* state variables */ uint32_t sample, stage = S->numStages; /* loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ do { /* Reading the coefficients */ b0 = *pCoeffs++; b1 = *pCoeffs++; b2 = *pCoeffs++; a1 = *pCoeffs++; a2 = *pCoeffs++; /*Reading the state values */ d1 = pState[0]; d2 = pState[1]; /* Apply loop unrolling and compute 4 output values simultaneously. */ sample = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(sample > 0u) { /* Read the first input */ Xn = *pIn++; /* y[n] = b0 * x[n] + d1 */ acc0 = (b0 * Xn) + d1; /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; /* Every time after the output is computed state should be updated. */ /* d1 = b1 * x[n] + a1 * y[n] + d2 */ d1 = ((b1 * Xn) + (a1 * acc0)) + d2; /* d2 = b2 * x[n] + a2 * y[n] */ d2 = (b2 * Xn) + (a2 * acc0); /* Read the second input */ Xn = *pIn++; /* y[n] = b0 * x[n] + d1 */ acc0 = (b0 * Xn) + d1; /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; /* Every time after the output is computed state should be updated. */ /* d1 = b1 * x[n] + a1 * y[n] + d2 */ d1 = ((b1 * Xn) + (a1 * acc0)) + d2; /* d2 = b2 * x[n] + a2 * y[n] */ d2 = (b2 * Xn) + (a2 * acc0); /* Read the third input */ Xn = *pIn++; /* y[n] = b0 * x[n] + d1 */ acc0 = (b0 * Xn) + d1; /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; /* Every time after the output is computed state should be updated. */ /* d1 = b1 * x[n] + a1 * y[n] + d2 */ d1 = ((b1 * Xn) + (a1 * acc0)) + d2; /* d2 = b2 * x[n] + a2 * y[n] */ d2 = (b2 * Xn) + (a2 * acc0); /* Read the fourth input */ Xn = *pIn++; /* y[n] = b0 * x[n] + d1 */ acc0 = (b0 * Xn) + d1; /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; /* Every time after the output is computed state should be updated. */ /* d1 = b1 * x[n] + a1 * y[n] + d2 */ d1 = (b1 * Xn) + (a1 * acc0) + d2; /* d2 = b2 * x[n] + a2 * y[n] */ d2 = (b2 * Xn) + (a2 * acc0); /* decrement the loop counter */ sample--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ sample = blockSize & 0x3u; while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* y[n] = b0 * x[n] + d1 */ acc0 = (b0 * Xn) + d1; /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; /* Every time after the output is computed state should be updated. */ /* d1 = b1 * x[n] + a1 * y[n] + d2 */ d1 = ((b1 * Xn) + (a1 * acc0)) + d2; /* d2 = b2 * x[n] + a2 * y[n] */ d2 = (b2 * Xn) + (a2 * acc0); /* decrement the loop counter */ sample--; } /* Store the updated state variables back into the state array */ *pState++ = d1; *pState++ = d2; /* The current stage input is given as the output to the next stage */ pIn = pDst; /*Reset the output working pointer */ pOut = pDst; /* decrement the loop counter */ stage--; } while(stage > 0u); #else /* Run the below code for Cortex-M0 */ do { /* Reading the coefficients */ b0 = *pCoeffs++; b1 = *pCoeffs++; b2 = *pCoeffs++; a1 = *pCoeffs++; a2 = *pCoeffs++; /*Reading the state values */ d1 = pState[0]; d2 = pState[1]; sample = blockSize; while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* y[n] = b0 * x[n] + d1 */ acc0 = (b0 * Xn) + d1; /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; /* Every time after the output is computed state should be updated. */ /* d1 = b1 * x[n] + a1 * y[n] + d2 */ d1 = ((b1 * Xn) + (a1 * acc0)) + d2; /* d2 = b2 * x[n] + a2 * y[n] */ d2 = (b2 * Xn) + (a2 * acc0); /* decrement the loop counter */ sample--; } /* Store the updated state variables back into the state array */ *pState++ = d1; *pState++ = d2; /* The current stage input is given as the output to the next stage */ pIn = pDst; /*Reset the output working pointer */ pOut = pDst; /* decrement the loop counter */ stage--; } while(stage > 0u); #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BiquadCascadeDF2T group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df2T_f32.c
C
lgpl
12,900
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_init_f32.c * * Description: Floating-point LMS filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @addtogroup LMS * @{ */ /** * @brief Initialization function for floating-point LMS filter. * @param[in] *S points to an instance of the floating-point LMS filter structure. * @param[in] numTaps number of filter coefficients. * @param[in] *pCoeffs points to the coefficient buffer. * @param[in] *pState points to state buffer. * @param[in] mu step size that controls filter coefficient updates. * @param[in] blockSize number of samples to process. * @return none. */ /** * \par Description: * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * The initial filter coefficients serve as a starting point for the adaptive filter. * <code>pState</code> points to an array of length <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_lms_f32()</code>. */ void arm_lms_init_f32( arm_lms_instance_f32 * S, uint16_t numTaps, float32_t * pCoeffs, float32_t * pState, float32_t mu, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always blockSize + numTaps */ memset(pState, 0, (numTaps + (blockSize - 1)) * sizeof(float32_t)); /* Assign state pointer */ S->pState = pState; /* Assign Step size value */ S->mu = mu; } /** * @} end of LMS group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_f32.c
C
lgpl
2,742
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_init_q31.c * * Description: Q31 LMS filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup LMS * @{ */ /** * @brief Initialization function for Q31 LMS filter. * @param[in] *S points to an instance of the Q31 LMS filter structure. * @param[in] numTaps number of filter coefficients. * @param[in] *pCoeffs points to coefficient buffer. * @param[in] *pState points to state buffer. * @param[in] mu step size that controls filter coefficient updates. * @param[in] blockSize number of samples to process. * @param[in] postShift bit shift applied to coefficients. * @return none. * * \par Description: * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * The initial filter coefficients serve as a starting point for the adaptive filter. * <code>pState</code> points to an array of length <code>numTaps+blockSize-1</code> samples, * where <code>blockSize</code> is the number of input samples processed by each call to * <code>arm_lms_q31()</code>. */ void arm_lms_init_q31( arm_lms_instance_q31 * S, uint16_t numTaps, q31_t * pCoeffs, q31_t * pState, q31_t mu, uint32_t blockSize, uint32_t postShift) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always blockSize + numTaps - 1 */ memset(pState, 0, ((uint32_t) numTaps + (blockSize - 1u)) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; /* Assign Step size value */ S->mu = mu; /* Assign postShift value to be applied */ S->postShift = postShift; } /** * @} end of LMS group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_init_q31.c
C
lgpl
2,920
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_lattice_init_q15.c * * Description: Q15 FIR Lattice filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Lattice * @{ */ /** * @brief Initialization function for the Q15 FIR lattice filter. * @param[in] *S points to an instance of the Q15 FIR lattice structure. * @param[in] numStages number of filter stages. * @param[in] *pCoeffs points to the coefficient buffer. The array is of length numStages. * @param[in] *pState points to the state buffer. The array is of length numStages. * @return none. */ void arm_fir_lattice_init_q15( arm_fir_lattice_instance_q15 * S, uint16_t numStages, q15_t * pCoeffs, q15_t * pState) { /* Assign filter taps */ S->numStages = numStages; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always numStages */ memset(pState, 0, (numStages) * sizeof(q15_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR_Lattice group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q15.c
C
lgpl
2,097
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_interpolate_init_q31.c * * Description: Q31 FIR interpolator initialization function * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Interpolate * @{ */ /** * @brief Initialization function for the Q31 FIR interpolator. * @param[in,out] *S points to an instance of the Q31 FIR interpolator structure. * @param[in] L upsample factor. * @param[in] numTaps number of filter coefficients in the filter. * @param[in] *pCoeffs points to the filter coefficient buffer. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of input samples to process per call. * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_LENGTH_ERROR if * the filter length <code>numTaps</code> is not a multiple of the interpolation factor <code>L</code>. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[numTaps-2], ..., b[1], b[0]} * </pre> * The length of the filter <code>numTaps</code> must be a multiple of the interpolation factor <code>L</code>. * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>(numTaps/L)+blockSize-1</code> words * where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_fir_interpolate_q31()</code>. */ arm_status arm_fir_interpolate_init_q31( arm_fir_interpolate_instance_q31 * S, uint8_t L, uint16_t numTaps, q31_t * pCoeffs, q31_t * pState, uint32_t blockSize) { arm_status status; /* The filter length must be a multiple of the interpolation factor */ if((numTaps % L) != 0u) { /* Set status as ARM_MATH_LENGTH_ERROR */ status = ARM_MATH_LENGTH_ERROR; } else { /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Assign Interpolation factor */ S->L = L; /* Assign polyPhaseLength */ S->phaseLength = numTaps / L; /* Clear state buffer and size of buffer is always phaseLength + blockSize - 1 */ memset(pState, 0, (blockSize + ((uint32_t) S->phaseLength - 1u)) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; status = ARM_MATH_SUCCESS; } return (status); } /** * @} end of FIR_Interpolate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_init_q31.c
C
lgpl
3,568
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_lattice_init_q31.c * * Description: Q31 FIR lattice filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Lattice * @{ */ /** * @brief Initialization function for the Q31 FIR lattice filter. * @param[in] *S points to an instance of the Q31 FIR lattice structure. * @param[in] numStages number of filter stages. * @param[in] *pCoeffs points to the coefficient buffer. The array is of length numStages. * @param[in] *pState points to the state buffer. The array is of length numStages. * @return none. */ void arm_fir_lattice_init_q31( arm_fir_lattice_instance_q31 * S, uint16_t numStages, q31_t * pCoeffs, q31_t * pState) { /* Assign filter taps */ S->numStages = numStages; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always numStages */ memset(pState, 0, (numStages) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR_Lattice group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_lattice_init_q31.c
C
lgpl
2,096
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_init_q7.c * * Description: Q7 FIR filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * ------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR * @{ */ /** * @param[in,out] *S points to an instance of the Q7 FIR filter structure. * @param[in] numTaps Number of filter coefficients in the filter. * @param[in] *pCoeffs points to the filter coefficients buffer. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of samples that are processed per call. * @return none * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_fir_q7()</code>. */ void arm_fir_init_q7( arm_fir_instance_q7 * S, uint16_t numTaps, q7_t * pCoeffs, q7_t * pState, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear the state buffer. The size is always (blockSize + numTaps - 1) */ memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(q7_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q7.c
C
lgpl
2,671
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_decimate_init_f32.c * * Description: Floating-point FIR Decimator initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_decimate * @{ */ /** * @brief Initialization function for the floating-point FIR decimator. * @param[in,out] *S points to an instance of the floating-point FIR decimator structure. * @param[in] numTaps number of coefficients in the filter. * @param[in] M decimation factor. * @param[in] *pCoeffs points to the filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of input samples to process per call. * @return The function returns ARM_MATH_SUCCESS if initialization was successful or ARM_MATH_LENGTH_ERROR if * <code>blockSize</code> is not a multiple of <code>M</code>. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>numTaps+blockSize-1</code> words where <code>blockSize</code> is the number of input samples passed to <code>arm_fir_decimate_f32()</code>. * <code>M</code> is the decimation factor. */ arm_status arm_fir_decimate_init_f32( arm_fir_decimate_instance_f32 * S, uint16_t numTaps, uint8_t M, float32_t * pCoeffs, float32_t * pState, uint32_t blockSize) { arm_status status; /* The size of the input block must be a multiple of the decimation factor */ if((blockSize % M) != 0u) { /* Set status as ARM_MATH_LENGTH_ERROR */ status = ARM_MATH_LENGTH_ERROR; } else { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always (blockSize + numTaps - 1) */ memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(float32_t)); /* Assign state pointer */ S->pState = pState; /* Assign Decimation Factor */ S->M = M; status = ARM_MATH_SUCCESS; } return (status); } /** * @} end of FIR_decimate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_init_f32.c
C
lgpl
3,337
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_32x64_init_q31.c * * Description: High precision Q31 Biquad cascade filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1_32x64 * @{ */ /** * @details * * @param[in,out] *S points to an instance of the high precision Q31 Biquad cascade filter structure. * @param[in] numStages number of 2nd order stages in the filter. * @param[in] *pCoeffs points to the filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] postShift Shift to be applied after the accumulator. Varies according to the coefficients format. * @return none * * <b>Coefficient and State Ordering:</b> * * \par * The coefficients are stored in the array <code>pCoeffs</code> in the following order: * <pre> * {b10, b11, b12, a11, a12, b20, b21, b22, a21, a22, ...} * </pre> * where <code>b1x</code> and <code>a1x</code> are the coefficients for the first stage, * <code>b2x</code> and <code>a2x</code> are the coefficients for the second stage, * and so on. The <code>pCoeffs</code> array contains a total of <code>5*numStages</code> values. * * \par * The <code>pState</code> points to state variables array and size of each state variable is 1.63 format. * Each Biquad stage has 4 state variables <code>x[n-1], x[n-2], y[n-1],</code> and <code>y[n-2]</code>. * The state variables are arranged in the state array as: * <pre> * {x[n-1], x[n-2], y[n-1], y[n-2]} * </pre> * The 4 state variables for stage 1 are first, then the 4 state variables for stage 2, and so on. * The state array has a total length of <code>4*numStages</code> values. * The state variables are updated after each block of data is processed; the coefficients are untouched. */ void arm_biquad_cas_df1_32x64_init_q31( arm_biquad_cas_df1_32x64_ins_q31 * S, uint8_t numStages, q31_t * pCoeffs, q63_t * pState, uint8_t postShift) { /* Assign filter stages */ S->numStages = numStages; /* Assign postShift to be applied to the output */ S->postShift = postShift; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always 4 * numStages */ memset(pState, 0, (4u * (uint32_t) numStages) * sizeof(q63_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of BiquadCascadeDF1_32x64 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_init_q31.c
C
lgpl
3,561
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_correlate_q7.c * * Description: Correlation of Q7 sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup Corr * @{ */ /** * @brief Correlation of Q7 sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. * @return none. * * @details * <b>Scaling and Overflow Behavior:</b> * * \par * The function is implemented using a 32-bit internal accumulator. * Both the inputs are represented in 1.7 format and multiplications yield a 2.14 result. * The 2.14 intermediate results are accumulated in a 32-bit accumulator in 18.14 format. * This approach provides 17 guard bits and there is no risk of overflow as long as <code>max(srcALen, srcBLen)<131072</code>. * The 18.14 result is then truncated to 18.7 format by discarding the low 7 bits and saturated to 1.7 format. */ void arm_correlate_q7( q7_t * pSrcA, uint32_t srcALen, q7_t * pSrcB, uint32_t srcBLen, q7_t * pDst) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t *pIn1; /* inputA pointer */ q7_t *pIn2; /* inputB pointer */ q7_t *pOut = pDst; /* output pointer */ q7_t *px; /* Intermediate inputA pointer */ q7_t *py; /* Intermediate inputB pointer */ q7_t *pSrc1; /* Intermediate pointers */ q31_t sum, acc0, acc1, acc2, acc3; /* Accumulators */ q31_t input1, input2; /* temporary variables */ q15_t in1, in2; /* temporary variables */ q7_t x0, x1, x2, x3, c0, c1; /* temporary variables for holding input and coefficient values */ uint32_t j, k = 0u, count, blkCnt, outBlockSize, blockSize1, blockSize2, blockSize3; /* loop counter */ int32_t inc = 1; /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ /* But CORR(x, y) is reverse of CORR(y, x) */ /* So, when srcBLen > srcALen, output pointer is made to point to the end of the output buffer */ /* and the destination pointer modifier, inc is set to -1 */ /* If srcALen > srcBLen, zero pad has to be done to srcB to make the two inputs of same length */ /* But to improve the performance, * we include zeroes in the output instead of zero padding either of the the inputs*/ /* If srcALen > srcBLen, * (srcALen - srcBLen) zeroes has to included in the starting of the output buffer */ /* If srcALen < srcBLen, * (srcALen - srcBLen) zeroes has to included in the ending of the output buffer */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = (pSrcA); /* Initialization of inputB pointer */ pIn2 = (pSrcB); /* Number of output samples is calculated */ outBlockSize = (2u * srcALen) - 1u; /* When srcALen > srcBLen, zero padding is done to srcB * to make their lengths equal. * Instead, (outBlockSize - (srcALen + srcBLen - 1)) * number of output samples are made zero */ j = outBlockSize - (srcALen + (srcBLen - 1u)); /* Updating the pointer position to non zero value */ pOut += j; } else { /* Initialization of inputA pointer */ pIn1 = (pSrcB); /* Initialization of inputB pointer */ pIn2 = (pSrcA); /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; /* CORR(x, y) = Reverse order(CORR(y, x)) */ /* Hence set the destination pointer to point to the last output sample */ pOut = pDst + ((srcALen + srcBLen) - 2u); /* Destination address modifier is set to -1 */ inc = -1; } /* The function is internally * divided into three parts according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first part of the * algorithm, the multiplications increase by one for every iteration. * In the second part of the algorithm, srcBLen number of multiplications are done. * In the third part of the algorithm, the multiplications decrease by one * for every iteration.*/ /* The algorithm is implemented in three stages. * The loop counters of each stage is initiated here. */ blockSize1 = srcBLen - 1u; blockSize2 = srcALen - (srcBLen - 1u); blockSize3 = blockSize1; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[srcBlen - 1] * sum = x[0] * y[srcBlen - 2] + x[1] * y[srcBlen - 1] * .... * sum = x[0] * y[0] + x[1] * y[1] +...+ x[srcBLen - 1] * y[srcBLen - 1] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = 1u; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc1 = pIn2 + (srcBLen - 1u); py = pSrc1; /* ------------------------ * Stage1 process * ----------------------*/ /* The first stage starts here */ while(blockSize1 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] , x[1] */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* y[srcBLen - 4] , y[srcBLen - 3] */ in1 = (q15_t) * py++; in2 = (q15_t) * py++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* x[0] * y[srcBLen - 4] */ /* x[1] * y[srcBLen - 3] */ sum = __SMLAD(input1, input2, sum); /* x[2] , x[3] */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* y[srcBLen - 2] , y[srcBLen - 1] */ in1 = (q15_t) * py++; in2 = (q15_t) * py++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* x[2] * y[srcBLen - 2] */ /* x[3] * y[srcBLen - 1] */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ /* x[0] * y[srcBLen - 1] */ sum += (q31_t) ((q15_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q7_t) (__SSAT(sum >> 7, 8)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ py = pSrc1 - count; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[0] + x[1] * y[1] +...+ x[srcBLen-1] * y[srcBLen-1] * sum = x[1] * y[0] + x[2] * y[1] +...+ x[srcBLen] * y[srcBLen-1] * .... * sum = x[srcALen-srcBLen-2] * y[0] + x[srcALen-srcBLen-1] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ py = pIn2; /* count is index by which the pointer pIn1 to be incremented */ count = 1u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = blockSize2 >> 2u; while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* read x[0], x[1], x[2] samples */ x0 = *px++; x1 = *px++; x2 = *px++; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read y[0] sample */ c0 = *py++; /* Read y[1] sample */ c1 = *py++; /* Read x[3] sample */ x3 = *px++; /* x[0] and x[1] are packed */ in1 = (q15_t) x0; in2 = (q15_t) x1; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* y[0] and y[1] are packed */ in1 = (q15_t) c0; in2 = (q15_t) c1; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc0 += x[0] * y[0] + x[1] * y[1] */ acc0 = __SMLAD(input1, input2, acc0); /* x[1] and x[2] are packed */ in1 = (q15_t) x1; in2 = (q15_t) x2; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc1 += x[1] * y[0] + x[2] * y[1] */ acc1 = __SMLAD(input1, input2, acc1); /* x[2] and x[3] are packed */ in1 = (q15_t) x2; in2 = (q15_t) x3; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc2 += x[2] * y[0] + x[3] * y[1] */ acc2 = __SMLAD(input1, input2, acc2); /* Read x[4] sample */ x0 = *(px++); /* x[3] and x[4] are packed */ in1 = (q15_t) x3; in2 = (q15_t) x0; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc3 += x[3] * y[0] + x[4] * y[1] */ acc3 = __SMLAD(input1, input2, acc3); /* Read y[2] sample */ c0 = *py++; /* Read y[3] sample */ c1 = *py++; /* Read x[5] sample */ x1 = *px++; /* x[2] and x[3] are packed */ in1 = (q15_t) x2; in2 = (q15_t) x3; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* y[2] and y[3] are packed */ in1 = (q15_t) c0; in2 = (q15_t) c1; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc0 += x[2] * y[2] + x[3] * y[3] */ acc0 = __SMLAD(input1, input2, acc0); /* x[3] and x[4] are packed */ in1 = (q15_t) x3; in2 = (q15_t) x0; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc1 += x[3] * y[2] + x[4] * y[3] */ acc1 = __SMLAD(input1, input2, acc1); /* x[4] and x[5] are packed */ in1 = (q15_t) x0; in2 = (q15_t) x1; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc2 += x[4] * y[2] + x[5] * y[3] */ acc2 = __SMLAD(input1, input2, acc2); /* Read x[6] sample */ x2 = *px++; /* x[5] and x[6] are packed */ in1 = (q15_t) x1; in2 = (q15_t) x2; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* acc3 += x[5] * y[2] + x[6] * y[3] */ acc3 = __SMLAD(input1, input2, acc3); } while(--k); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Read y[4] sample */ c0 = *py++; /* Read x[7] sample */ x3 = *px++; /* Perform the multiply-accumulates */ /* acc0 += x[4] * y[4] */ acc0 += ((q15_t) x0 * c0); /* acc1 += x[5] * y[4] */ acc1 += ((q15_t) x1 * c0); /* acc2 += x[6] * y[4] */ acc2 += ((q15_t) x2 * c0); /* acc3 += x[7] * y[4] */ acc3 += ((q15_t) x3 * c0); /* Reuse the present samples for the next MAC */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q7_t) (__SSAT(acc0 >> 7, 8)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; *pOut = (q7_t) (__SSAT(acc1 >> 7, 8)); pOut += inc; *pOut = (q7_t) (__SSAT(acc2 >> 7, 8)); pOut += inc; *pOut = (q7_t) (__SSAT(acc3 >> 7, 8)); pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pIn2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Reading two inputs of SrcA buffer and packing */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* Reading two inputs of SrcB buffer and packing */ in1 = (q15_t) * py++; in2 = (q15_t) * py++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* Perform the multiply-accumulates */ sum = __SMLAD(input1, input2, sum); /* Reading two inputs of SrcA buffer and packing */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* Reading two inputs of SrcB buffer and packing */ in1 = (q15_t) * py++; in2 = (q15_t) * py++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* Perform the multiply-accumulates */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q15_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q7_t) (__SSAT(sum >> 7, 8)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Loop over srcBLen */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += ((q15_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q7_t) (__SSAT(sum >> 7, 8)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[0] + x[srcALen-srcBLen+2] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] * sum += x[srcALen-srcBLen+2] * y[0] + x[srcALen-srcBLen+3] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] * .... * sum += x[srcALen-2] * y[0] + x[srcALen-1] * y[1] * sum += x[srcALen-1] * y[0] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = srcBLen - 1u; /* Working pointer of inputA */ pSrc1 = pIn1 + (srcALen - (srcBLen - 1u)); px = pSrc1; /* Working pointer of inputB */ py = pIn2; /* ------------------- * Stage3 process * ------------------*/ while(blockSize3 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[srcALen - srcBLen + 1] , x[srcALen - srcBLen + 2] */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* y[0] , y[1] */ in1 = (q15_t) * py++; in2 = (q15_t) * py++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* sum += x[srcALen - srcBLen + 1] * y[0] */ /* sum += x[srcALen - srcBLen + 2] * y[1] */ sum = __SMLAD(input1, input2, sum); /* x[srcALen - srcBLen + 3] , x[srcALen - srcBLen + 4] */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* y[2] , y[3] */ in1 = (q15_t) * py++; in2 = (q15_t) * py++; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16); /* sum += x[srcALen - srcBLen + 3] * y[2] */ /* sum += x[srcALen - srcBLen + 4] * y[3] */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q15_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q7_t) (__SSAT(sum >> 7, 8)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pIn2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; } #else /* Run the below code for Cortex-M0 */ q7_t *pIn1 = pSrcA; /* inputA pointer */ q7_t *pIn2 = pSrcB + (srcBLen - 1u); /* inputB pointer */ q31_t sum; /* Accumulator */ uint32_t i = 0u, j; /* loop counters */ uint32_t inv = 0u; /* Reverse order flag */ uint32_t tot = 0u; /* Length */ /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ /* But CORR(x, y) is reverse of CORR(y, x) */ /* So, when srcBLen > srcALen, output pointer is made to point to the end of the output buffer */ /* and a varaible, inv is set to 1 */ /* If lengths are not equal then zero pad has to be done to make the two * inputs of same length. But to improve the performance, we include zeroes * in the output instead of zero padding either of the the inputs*/ /* If srcALen > srcBLen, (srcALen - srcBLen) zeroes has to included in the * starting of the output buffer */ /* If srcALen < srcBLen, (srcALen - srcBLen) zeroes has to included in the * ending of the output buffer */ /* Once the zero padding is done the remaining of the output is calcualted * using convolution but with the shorter signal time shifted. */ /* Calculate the length of the remaining sequence */ tot = ((srcALen + srcBLen) - 2u); if(srcALen > srcBLen) { /* Calculating the number of zeros to be padded to the output */ j = srcALen - srcBLen; /* Initialise the pointer after zero padding */ pDst += j; } else if(srcALen < srcBLen) { /* Initialization to inputB pointer */ pIn1 = pSrcB; /* Initialization to the end of inputA pointer */ pIn2 = pSrcA + (srcALen - 1u); /* Initialisation of the pointer after zero padding */ pDst = pDst + tot; /* Swapping the lengths */ j = srcALen; srcALen = srcBLen; srcBLen = j; /* Setting the reverse flag */ inv = 1; } /* Loop to calculate convolution for output length number of times */ for (i = 0u; i <= tot; i++) { /* Initialize sum with zero to carry on MAC operations */ sum = 0; /* Loop to perform MAC operations according to convolution equation */ for (j = 0u; j <= i; j++) { /* Check the array limitations */ if((((i - j) < srcBLen) && (j < srcALen))) { /* z[i] += x[i-j] * y[j] */ sum += ((q15_t) pIn1[j] * pIn2[-((int32_t) i - j)]); } } /* Store the output in the destination buffer */ if(inv == 1) *pDst-- = (q7_t) __SSAT((sum >> 7u), 8u); else *pDst++ = (q7_t) __SSAT((sum >> 7u), 8u); } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of Corr group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q7.c
C
lgpl
24,389
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_conv_partial_q31.c * * Description: Partial convolution of Q31 sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup PartialConv * @{ */ /** * @brief Partial convolution of Q31 sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. * @param[in] firstIndex is the first output sample to start with. * @param[in] numPoints is the number of output points to be computed. * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. * * See <code>arm_conv_partial_fast_q31()</code> for a faster but less precise implementation of this function for Cortex-M3 and Cortex-M4. */ arm_status arm_conv_partial_q31( q31_t * pSrcA, uint32_t srcALen, q31_t * pSrcB, uint32_t srcBLen, q31_t * pDst, uint32_t firstIndex, uint32_t numPoints) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t *pIn1; /* inputA pointer */ q31_t *pIn2; /* inputB pointer */ q31_t *pOut = pDst; /* output pointer */ q31_t *px; /* Intermediate inputA pointer */ q31_t *py; /* Intermediate inputB pointer */ q31_t *pSrc1, *pSrc2; /* Intermediate pointers */ q63_t sum, acc0, acc1, acc2, acc3; /* Accumulator */ q31_t x0, x1, x2, x3, c0; uint32_t j, k, count, check, blkCnt; int32_t blockSize1, blockSize2, blockSize3; /* loop counter */ arm_status status; /* status of Partial convolution */ /* Check for range of output samples to be calculated */ if((firstIndex + numPoints) > ((srcALen + (srcBLen - 1u)))) { /* Set status as ARM_MATH_ARGUMENT_ERROR */ status = ARM_MATH_ARGUMENT_ERROR; } else { /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = pSrcA; /* Initialization of inputB pointer */ pIn2 = pSrcB; } else { /* Initialization of inputA pointer */ pIn1 = pSrcB; /* Initialization of inputB pointer */ pIn2 = pSrcA; /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; } /* Conditions to check which loopCounter holds * the first and last indices of the output samples to be calculated. */ check = firstIndex + numPoints; blockSize3 = ((int32_t) check - (int32_t) srcALen); blockSize3 = (blockSize3 > 0) ? blockSize3 : 0; blockSize1 = (((int32_t) srcBLen - 1) - (int32_t) firstIndex); blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : (int32_t) numPoints) : 0; blockSize2 = (int32_t) check - ((blockSize3 + blockSize1) + (int32_t) firstIndex); blockSize2 = (blockSize2 > 0) ? blockSize2 : 0; /* conv(x,y) at n = x[n] * y[0] + x[n-1] * y[1] + x[n-2] * y[2] + ...+ x[n-N+1] * y[N -1] */ /* The function is internally * divided into three stages according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first stage of the * algorithm, the multiplications increase by one for every iteration. * In the second stage of the algorithm, srcBLen number of multiplications are done. * In the third stage of the algorithm, the multiplications decrease by one * for every iteration. */ /* Set the output pointer to point to the firstIndex * of the output sample to be calculated. */ pOut = pDst + firstIndex; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[0] * sum = x[0] * y[1] + x[1] * y[0] * .... * sum = x[0] * y[srcBlen - 1] + x[1] * y[srcBlen - 2] +...+ x[srcBLen - 1] * y[0] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed. Since the partial convolution starts from firstIndex Number of Macs to be performed is firstIndex + 1 */ count = 1u + firstIndex; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + firstIndex; py = pSrc2; /* ------------------------ * Stage1 process * ----------------------*/ /* The first loop starts here */ while(blockSize1 > 0) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] * y[srcBLen - 1] */ sum += (q63_t) * px++ * (*py--); /* x[1] * y[srcBLen - 2] */ sum += (q63_t) * px++ * (*py--); /* x[2] * y[srcBLen - 3] */ sum += (q63_t) * px++ * (*py--); /* x[3] * y[srcBLen - 4] */ sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q31_t) (sum >> 31); /* Update the inputA and inputB pointers for next MAC calculation */ py = ++pSrc2; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[srcBLen-1] + x[1] * y[srcBLen-2] +...+ x[srcBLen-1] * y[0] * sum = x[1] * y[srcBLen-1] + x[2] * y[srcBLen-2] +...+ x[srcBLen] * y[0] * .... * sum = x[srcALen-srcBLen-2] * y[srcBLen-1] + x[srcALen] * y[srcBLen-2] +...+ x[srcALen-1] * y[0] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* count is index by which the pointer pIn1 to be incremented */ count = 1u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2 */ blkCnt = ((uint32_t) blockSize2 >> 2u); while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* read x[0], x[1], x[2] samples */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read y[srcBLen - 1] sample */ c0 = *(py--); /* Read x[3] sample */ x3 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[0] * y[srcBLen - 1] */ acc0 += (q63_t) x0 *c0; /* acc1 += x[1] * y[srcBLen - 1] */ acc1 += (q63_t) x1 *c0; /* acc2 += x[2] * y[srcBLen - 1] */ acc2 += (q63_t) x2 *c0; /* acc3 += x[3] * y[srcBLen - 1] */ acc3 += (q63_t) x3 *c0; /* Read y[srcBLen - 2] sample */ c0 = *(py--); /* Read x[4] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ /* acc0 += x[1] * y[srcBLen - 2] */ acc0 += (q63_t) x1 *c0; /* acc1 += x[2] * y[srcBLen - 2] */ acc1 += (q63_t) x2 *c0; /* acc2 += x[3] * y[srcBLen - 2] */ acc2 += (q63_t) x3 *c0; /* acc3 += x[4] * y[srcBLen - 2] */ acc3 += (q63_t) x0 *c0; /* Read y[srcBLen - 3] sample */ c0 = *(py--); /* Read x[5] sample */ x1 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[2] * y[srcBLen - 3] */ acc0 += (q63_t) x2 *c0; /* acc1 += x[3] * y[srcBLen - 2] */ acc1 += (q63_t) x3 *c0; /* acc2 += x[4] * y[srcBLen - 2] */ acc2 += (q63_t) x0 *c0; /* acc3 += x[5] * y[srcBLen - 2] */ acc3 += (q63_t) x1 *c0; /* Read y[srcBLen - 4] sample */ c0 = *(py--); /* Read x[6] sample */ x2 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[3] * y[srcBLen - 4] */ acc0 += (q63_t) x3 *c0; /* acc1 += x[4] * y[srcBLen - 4] */ acc1 += (q63_t) x0 *c0; /* acc2 += x[5] * y[srcBLen - 4] */ acc2 += (q63_t) x1 *c0; /* acc3 += x[6] * y[srcBLen - 4] */ acc3 += (q63_t) x2 *c0; } while(--k); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Read y[srcBLen - 5] sample */ c0 = *(py--); /* Read x[7] sample */ x3 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[4] * y[srcBLen - 5] */ acc0 += (q63_t) x0 *c0; /* acc1 += x[5] * y[srcBLen - 5] */ acc1 += (q63_t) x1 *c0; /* acc2 += x[6] * y[srcBLen - 5] */ acc2 += (q63_t) x2 *c0; /* acc3 += x[7] * y[srcBLen - 5] */ acc3 += (q63_t) x3 *c0; /* Reuse the present samples for the next MAC */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q31_t) (acc0 >> 31); *pOut++ = (q31_t) (acc1 >> 31); *pOut++ = (q31_t) (acc2 >> 31); *pOut++ = (q31_t) (acc3 >> 31); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pSrc2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = (uint32_t) blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ sum += (q63_t) * px++ * (*py--); sum += (q63_t) * px++ * (*py--); sum += (q63_t) * px++ * (*py--); sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q31_t) (sum >> 31); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = (uint32_t) blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* srcBLen number of MACS should be performed */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q31_t) (sum >> 31); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[srcBLen-1] + x[srcALen-srcBLen+2] * y[srcBLen-2] +...+ x[srcALen-1] * y[1] * sum += x[srcALen-srcBLen+2] * y[srcBLen-1] + x[srcALen-srcBLen+3] * y[srcBLen-2] +...+ x[srcALen-1] * y[2] * .... * sum += x[srcALen-2] * y[srcBLen-1] + x[srcALen-1] * y[srcBLen-2] * sum += x[srcALen-1] * y[srcBLen-1] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The blockSize3 variable holds the number of MAC operations performed */ count = srcBLen - 1u; /* Working pointer of inputA */ pSrc1 = (pIn1 + srcALen) - (srcBLen - 1u); px = pSrc1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* ------------------- * Stage3 process * ------------------*/ while(blockSize3 > 0) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { sum += (q63_t) * px++ * (*py--); sum += (q63_t) * px++ * (*py--); sum += (q63_t) * px++ * (*py--); sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* If the blockSize3 is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum += (q63_t) * px++ * (*py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q31_t) (sum >> 31); /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pSrc2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; } /* set status as ARM_MATH_SUCCESS */ status = ARM_MATH_SUCCESS; } /* Return to application */ return (status); #else /* Run the below code for Cortex-M0 */ q31_t *pIn1 = pSrcA; /* inputA pointer */ q31_t *pIn2 = pSrcB; /* inputB pointer */ q63_t sum; /* Accumulator */ uint32_t i, j; /* loop counters */ arm_status status; /* status of Partial convolution */ /* Check for range of output samples to be calculated */ if((firstIndex + numPoints) > ((srcALen + (srcBLen - 1u)))) { /* Set status as ARM_ARGUMENT_ERROR */ status = ARM_MATH_ARGUMENT_ERROR; } else { /* Loop to calculate convolution for output length number of values */ for (i = firstIndex; i <= (firstIndex + numPoints - 1); i++) { /* Initialize sum with zero to carry on MAC operations */ sum = 0; /* Loop to perform MAC operations according to convolution equation */ for (j = 0; j <= i; j++) { /* Check the array limitations */ if(((i - j) < srcBLen) && (j < srcALen)) { /* z[i] += x[i-j] * y[j] */ sum += ((q63_t) pIn1[j] * (pIn2[i - j])); } } /* Store the output in the destination buffer */ pDst[i] = (q31_t) (sum >> 31u); } /* set status as ARM_SUCCESS as there are no argument errors */ status = ARM_MATH_SUCCESS; } return (status); #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of PartialConv group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_q31.c
C
lgpl
19,685
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_init_q31.c * * Description: Q31 Biquad cascade DirectFormI(DF1) filter initialization function. * * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1 * @{ */ /** * @details * * @param[in,out] *S points to an instance of the Q31 Biquad cascade structure. * @param[in] numStages number of 2nd order stages in the filter. * @param[in] *pCoeffs points to the filter coefficients buffer. * @param[in] *pState points to the state buffer. * @param[in] postShift Shift to be applied after the accumulator. Varies according to the coefficients format * @return none * * <b>Coefficient and State Ordering:</b> * * \par * The coefficients are stored in the array <code>pCoeffs</code> in the following order: * <pre> * {b10, b11, b12, a11, a12, b20, b21, b22, a21, a22, ...} * </pre> * where <code>b1x</code> and <code>a1x</code> are the coefficients for the first stage, * <code>b2x</code> and <code>a2x</code> are the coefficients for the second stage, * and so on. The <code>pCoeffs</code> array contains a total of <code>5*numStages</code> values. * * \par * The <code>pState</code> points to state variables array. * Each Biquad stage has 4 state variables <code>x[n-1], x[n-2], y[n-1],</code> and <code>y[n-2]</code>. * The state variables are arranged in the <code>pState</code> array as: * <pre> * {x[n-1], x[n-2], y[n-1], y[n-2]} * </pre> * The 4 state variables for stage 1 are first, then the 4 state variables for stage 2, and so on. * The state array has a total length of <code>4*numStages</code> values. * The state variables are updated after each block of data is processed; the coefficients are untouched. */ void arm_biquad_cascade_df1_init_q31( arm_biquad_casd_df1_inst_q31 * S, uint8_t numStages, q31_t * pCoeffs, q31_t * pState, int8_t postShift) { /* Assign filter stages */ S->numStages = numStages; /* Assign postShift to be applied to the output */ S->postShift = postShift; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always 4 * numStages */ memset(pState, 0, (4u * (uint32_t) numStages) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of BiquadCascadeDF1 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q31.c
C
lgpl
3,597
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_correlate_fast_q31.c * * Description: Fast Q31 Correlation. * * Target Processor: Cortex-M4/Cortex-M3 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup Corr * @{ */ /** * @brief Correlation of Q31 sequences (fast version) for Cortex-M3 and Cortex-M4. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. * @return none. * * @details * <b>Scaling and Overflow Behavior:</b> * * \par * This function is optimized for speed at the expense of fixed-point precision and overflow protection. * The result of each 1.31 x 1.31 multiplication is truncated to 2.30 format. * These intermediate results are accumulated in a 32-bit register in 2.30 format. * Finally, the accumulator is saturated and converted to a 1.31 result. * * \par * The fast version has the same overflow behavior as the standard version but provides less precision since it discards the low 32 bits of each multiplication result. * In order to avoid overflows completely the input signals must be scaled down. * The input signals should be scaled down to avoid intermediate overflows. * Scale down one of the inputs by 1/min(srcALen, srcBLen)to avoid overflows since a * maximum of min(srcALen, srcBLen) number of additions is carried internally. * * \par * See <code>arm_correlate_q31()</code> for a slower implementation of this function which uses 64-bit accumulation to provide higher precision. */ void arm_correlate_fast_q31( q31_t * pSrcA, uint32_t srcALen, q31_t * pSrcB, uint32_t srcBLen, q31_t * pDst) { q31_t *pIn1; /* inputA pointer */ q31_t *pIn2; /* inputB pointer */ q31_t *pOut = pDst; /* output pointer */ q31_t *px; /* Intermediate inputA pointer */ q31_t *py; /* Intermediate inputB pointer */ q31_t *pSrc1; /* Intermediate pointers */ q31_t sum, acc0, acc1, acc2, acc3; /* Accumulators */ q31_t x0, x1, x2, x3, c0; /* temporary variables for holding input and coefficient values */ uint32_t j, k = 0u, count, blkCnt, outBlockSize, blockSize1, blockSize2, blockSize3; /* loop counter */ int32_t inc = 1; /* Destination address modifier */ /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = (pSrcA); /* Initialization of inputB pointer */ pIn2 = (pSrcB); /* Number of output samples is calculated */ outBlockSize = (2u * srcALen) - 1u; /* When srcALen > srcBLen, zero padding is done to srcB * to make their lengths equal. * Instead, (outBlockSize - (srcALen + srcBLen - 1)) * number of output samples are made zero */ j = outBlockSize - (srcALen + (srcBLen - 1u)); /* Updating the pointer position to non zero value */ pOut += j; } else { /* Initialization of inputA pointer */ pIn1 = (pSrcB); /* Initialization of inputB pointer */ pIn2 = (pSrcA); /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; /* CORR(x, y) = Reverse order(CORR(y, x)) */ /* Hence set the destination pointer to point to the last output sample */ pOut = pDst + ((srcALen + srcBLen) - 2u); /* Destination address modifier is set to -1 */ inc = -1; } /* The function is internally * divided into three parts according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first part of the * algorithm, the multiplications increase by one for every iteration. * In the second part of the algorithm, srcBLen number of multiplications are done. * In the third part of the algorithm, the multiplications decrease by one * for every iteration.*/ /* The algorithm is implemented in three stages. * The loop counters of each stage is initiated here. */ blockSize1 = srcBLen - 1u; blockSize2 = srcALen - (srcBLen - 1u); blockSize3 = blockSize1; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[srcBlen - 1] * sum = x[0] * y[srcBlen - 2] + x[1] * y[srcBlen - 1] * .... * sum = x[0] * y[0] + x[1] * y[1] +...+ x[srcBLen - 1] * y[srcBLen - 1] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = 1u; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc1 = pIn2 + (srcBLen - 1u); py = pSrc1; /* ------------------------ * Stage1 process * ----------------------*/ /* The first stage starts here */ while(blockSize1 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] * y[srcBLen - 4] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* x[1] * y[srcBLen - 3] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* x[2] * y[srcBLen - 2] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* x[3] * y[srcBLen - 1] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ /* x[0] * y[srcBLen - 1] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = sum << 1; /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ py = pSrc1 - count; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[0] + x[1] * y[1] +...+ x[srcBLen-1] * y[srcBLen-1] * sum = x[1] * y[0] + x[2] * y[1] +...+ x[srcBLen] * y[srcBLen-1] * .... * sum = x[srcALen-srcBLen-2] * y[0] + x[srcALen-srcBLen-1] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ py = pIn2; /* count is index by which the pointer pIn1 to be incremented */ count = 1u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = blockSize2 >> 2u; while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* read x[0], x[1], x[2] samples */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read y[0] sample */ c0 = *(py++); /* Read x[3] sample */ x3 = *(px++); /* Perform the multiply-accumulate */ /* acc0 += x[0] * y[0] */ acc0 = (q31_t) ((((q63_t) acc0 << 32) + ((q63_t) x0 * c0)) >> 32); /* acc1 += x[1] * y[0] */ acc1 = (q31_t) ((((q63_t) acc1 << 32) + ((q63_t) x1 * c0)) >> 32); /* acc2 += x[2] * y[0] */ acc2 = (q31_t) ((((q63_t) acc2 << 32) + ((q63_t) x2 * c0)) >> 32); /* acc3 += x[3] * y[0] */ acc3 = (q31_t) ((((q63_t) acc3 << 32) + ((q63_t) x3 * c0)) >> 32); /* Read y[1] sample */ c0 = *(py++); /* Read x[4] sample */ x0 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[1] * y[1] */ acc0 = (q31_t) ((((q63_t) acc0 << 32) + ((q63_t) x1 * c0)) >> 32); /* acc1 += x[2] * y[1] */ acc1 = (q31_t) ((((q63_t) acc1 << 32) + ((q63_t) x2 * c0)) >> 32); /* acc2 += x[3] * y[1] */ acc2 = (q31_t) ((((q63_t) acc2 << 32) + ((q63_t) x3 * c0)) >> 32); /* acc3 += x[4] * y[1] */ acc3 = (q31_t) ((((q63_t) acc3 << 32) + ((q63_t) x0 * c0)) >> 32); /* Read y[2] sample */ c0 = *(py++); /* Read x[5] sample */ x1 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[2] * y[2] */ acc0 = (q31_t) ((((q63_t) acc0 << 32) + ((q63_t) x2 * c0)) >> 32); /* acc1 += x[3] * y[2] */ acc1 = (q31_t) ((((q63_t) acc1 << 32) + ((q63_t) x3 * c0)) >> 32); /* acc2 += x[4] * y[2] */ acc2 = (q31_t) ((((q63_t) acc2 << 32) + ((q63_t) x0 * c0)) >> 32); /* acc3 += x[5] * y[2] */ acc3 = (q31_t) ((((q63_t) acc3 << 32) + ((q63_t) x1 * c0)) >> 32); /* Read y[3] sample */ c0 = *(py++); /* Read x[6] sample */ x2 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[3] * y[3] */ acc0 = (q31_t) ((((q63_t) acc0 << 32) + ((q63_t) x3 * c0)) >> 32); /* acc1 += x[4] * y[3] */ acc1 = (q31_t) ((((q63_t) acc1 << 32) + ((q63_t) x0 * c0)) >> 32); /* acc2 += x[5] * y[3] */ acc2 = (q31_t) ((((q63_t) acc2 << 32) + ((q63_t) x1 * c0)) >> 32); /* acc3 += x[6] * y[3] */ acc3 = (q31_t) ((((q63_t) acc3 << 32) + ((q63_t) x2 * c0)) >> 32); } while(--k); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Read y[4] sample */ c0 = *(py++); /* Read x[7] sample */ x3 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[4] * y[4] */ acc0 = (q31_t) ((((q63_t) acc0 << 32) + ((q63_t) x0 * c0)) >> 32); /* acc1 += x[5] * y[4] */ acc1 = (q31_t) ((((q63_t) acc1 << 32) + ((q63_t) x1 * c0)) >> 32); /* acc2 += x[6] * y[4] */ acc2 = (q31_t) ((((q63_t) acc2 << 32) + ((q63_t) x2 * c0)) >> 32); /* acc3 += x[7] * y[4] */ acc3 = (q31_t) ((((q63_t) acc3 << 32) + ((q63_t) x3 * c0)) >> 32); /* Reuse the present samples for the next MAC */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q31_t) (acc0 << 1); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; *pOut = (q31_t) (acc1 << 1); pOut += inc; *pOut = (q31_t) (acc2 << 1); pOut += inc; *pOut = (q31_t) (acc3 << 1); pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pIn2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = sum << 1; /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Loop over srcBLen */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = sum << 1; /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[0] + x[srcALen-srcBLen+2] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] * sum += x[srcALen-srcBLen+2] * y[0] + x[srcALen-srcBLen+3] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] * .... * sum += x[srcALen-2] * y[0] + x[srcALen-1] * y[1] * sum += x[srcALen-1] * y[0] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = srcBLen - 1u; /* Working pointer of inputA */ pSrc1 = ((pIn1 + srcALen) - srcBLen) + 1u; px = pSrc1; /* Working pointer of inputB */ py = pIn2; /* ------------------- * Stage3 process * ------------------*/ while(blockSize3 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ /* sum += x[srcALen - srcBLen + 4] * y[3] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* sum += x[srcALen - srcBLen + 3] * y[2] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* sum += x[srcALen - srcBLen + 2] * y[1] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* sum += x[srcALen - srcBLen + 1] * y[0] */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum = (q31_t) ((((q63_t) sum << 32) + ((q63_t) * px++ * (*py++))) >> 32); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = sum << 1; /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pIn2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; } } /** * @} end of Corr group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_fast_q31.c
C
lgpl
19,820
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_sparse_init_q31.c * * Description: Q31 sparse FIR filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Sparse * @{ */ /** * @brief Initialization function for the Q31 sparse FIR filter. * @param[in,out] *S points to an instance of the Q31 sparse FIR structure. * @param[in] numTaps number of nonzero coefficients in the filter. * @param[in] *pCoeffs points to the array of filter coefficients. * @param[in] *pState points to the state buffer. * @param[in] *pTapDelay points to the array of offset times. * @param[in] maxDelay maximum offset time supported. * @param[in] blockSize number of samples that will be processed per block. * @return none * * <b>Description:</b> * \par * <code>pCoeffs</code> holds the filter coefficients and has length <code>numTaps</code>. * <code>pState</code> holds the filter's state variables and must be of length * <code>maxDelay + blockSize</code>, where <code>maxDelay</code> * is the maximum number of delay line values. * <code>blockSize</code> is the number of words processed by <code>arm_fir_sparse_q31()</code> function. */ void arm_fir_sparse_init_q31( arm_fir_sparse_instance_q31 * S, uint16_t numTaps, q31_t * pCoeffs, q31_t * pState, int32_t * pTapDelay, uint16_t maxDelay, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Assign TapDelay pointer */ S->pTapDelay = pTapDelay; /* Assign MaxDelay */ S->maxDelay = maxDelay; /* reset the stateIndex to 0 */ S->stateIndex = 0u; /* Clear state buffer and size is always maxDelay + blockSize */ memset(pState, 0, (maxDelay + blockSize) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR_Sparse group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_sparse_init_q31.c
C
lgpl
2,981
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_q15.c * * Description: Processing function for the Q15 LMS filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup LMS * @{ */ /** * @brief Processing function for Q15 LMS filter. * @param[in] *S points to an instance of the Q15 LMS filter structure. * @param[in] *pSrc points to the block of input data. * @param[in] *pRef points to the block of reference data. * @param[out] *pOut points to the block of output data. * @param[out] *pErr points to the block of error data. * @param[in] blockSize number of samples to process. * @return none. * * \par Scaling and Overflow Behavior: * The function is implemented using a 64-bit internal accumulator. * Both coefficients and state variables are represented in 1.15 format and multiplications yield a 2.30 result. * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. * After all additions have been performed, the accumulator is truncated to 34.15 format by discarding low 15 bits. * Lastly, the accumulator is saturated to yield a result in 1.15 format. * * \par * In this filter, filter coefficients are updated for each sample and the updation of filter cofficients are saturted. * */ void arm_lms_q15( const arm_lms_instance_q15 * S, q15_t * pSrc, q15_t * pRef, q15_t * pOut, q15_t * pErr, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ uint32_t numTaps = S->numTaps; /* Number of filter coefficients in the filter */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ q15_t mu = S->mu; /* Adaptive factor */ q15_t *px; /* Temporary pointer for state */ q15_t *pb; /* Temporary pointer for coefficient buffer */ uint32_t tapCnt, blkCnt; /* Loop counters */ q63_t acc; /* Accumulator */ q15_t e = 0; /* error of data sample */ q15_t alpha; /* Intermediate constant for taps update */ uint32_t shift = S->postShift + 1u; /* Shift to be applied to the output */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q31_t coef; /* Teporary variable for coefficient */ /* S->pState points to buffer which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Initializing blkCnt with blockSize */ blkCnt = blockSize; while(blkCnt > 0u) { /* Copy the new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Initialize state pointer */ px = pState; /* Initialize coefficient pointer */ pb = pCoeffs; /* Set the accumulator to zero */ acc = 0; /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2u; while(tapCnt > 0u) { /* acc += b[N] * x[n-N] + b[N-1] * x[n-N-1] */ /* Perform the multiply-accumulate */ acc = __SMLALD(*__SIMD32(px)++, (*__SIMD32(pb)++), acc); acc = __SMLALD(*__SIMD32(px)++, (*__SIMD32(pb)++), acc); /* Decrement the loop counter */ tapCnt--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = numTaps % 0x4u; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ acc += (q63_t) (((q31_t) (*px++) * (*pb++))); /* Decrement the loop counter */ tapCnt--; } /* Converting the result to 1.15 format and saturate the output */ acc = __SSAT((acc >> (16 - shift)), 16); /* Store the result from accumulator into the destination buffer. */ *pOut++ = (q15_t) acc; /* Compute and store error */ e = *pRef++ - (q15_t) acc; *pErr++ = (q15_t) e; /* Compute alpha i.e. intermediate constant for taps update */ alpha = (q15_t) (((q31_t) e * (mu)) >> 15); /* Initialize state pointer */ /* Advance state pointer by 1 for the next sample */ px = pState++; /* Initialize coefficient pointer */ pb = pCoeffs; /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2u; /* Update filter coefficients */ while(tapCnt > 0u) { coef = (q31_t) * pb + (((q31_t) alpha * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); coef = (q31_t) * pb + (((q31_t) alpha * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); coef = (q31_t) * pb + (((q31_t) alpha * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); coef = (q31_t) * pb + (((q31_t) alpha * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); /* Decrement the loop counter */ tapCnt--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = numTaps % 0x4u; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ coef = (q31_t) * pb + (((q31_t) alpha * (*px++)) >> 15); *pb++ = (q15_t) __SSAT((coef), 16); /* Decrement the loop counter */ tapCnt--; } /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. Now copy the last numTaps - 1 samples to the satrt of the state buffer. This prepares the state buffer for the next function call. */ /* Points to the start of the pState buffer */ pStateCurnt = S->pState; /* Calculation of count for copying integer writes */ tapCnt = (numTaps - 1u) >> 2; while(tapCnt > 0u) { *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; tapCnt--; } /* Calculation of count for remaining q15_t data */ tapCnt = (numTaps - 1u) % 0x4u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ /* S->pState points to buffer which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Loop over blockSize number of values */ blkCnt = blockSize; while(blkCnt > 0u) { /* Copy the new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Initialize pState pointer */ px = pState; /* Initialize pCoeffs pointer */ pb = pCoeffs; /* Set the accumulator to zero */ acc = 0; /* Loop over numTaps number of values */ tapCnt = numTaps; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ acc += (q63_t) ((q31_t) (*px++) * (*pb++)); /* Decrement the loop counter */ tapCnt--; } /* Converting the result to 1.15 format and saturate the output */ acc = __SSAT((acc >> (16 - shift)), 16); /* Store the result from accumulator into the destination buffer. */ *pOut++ = (q15_t) acc; /* Compute and store error */ e = *pRef++ - (q15_t) acc; *pErr++ = (q15_t) e; /* Compute alpha i.e. intermediate constant for taps update */ alpha = (q15_t) (((q31_t) e * (mu)) >> 15); /* Initialize pState pointer */ /* Advance state pointer by 1 for the next sample */ px = pState++; /* Initialize pCoeffs pointer */ pb = pCoeffs; /* Loop over numTaps number of values */ tapCnt = numTaps; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ *pb++ += (q15_t) (((q31_t) alpha * (*px++)) >> 15); /* Decrement the loop counter */ tapCnt--; } /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. Now copy the last numTaps - 1 samples to the start of the state buffer. This prepares the state buffer for the next function call. */ /* Points to the start of the pState buffer */ pStateCurnt = S->pState; /* Copy (numTaps - 1u) samples */ tapCnt = (numTaps - 1u); /* Copy the data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of LMS group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_q15.c
C
lgpl
9,938
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df2T_init_f32.c * * Description: Initialization function for the floating-point transposed * direct form II Biquad cascade filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF2T * @{ */ /** * @brief Initialization function for the floating-point transposed direct form II Biquad cascade filter. * @param[in,out] *S points to an instance of the filter data structure. * @param[in] numStages number of 2nd order stages in the filter. * @param[in] *pCoeffs points to the filter coefficients. * @param[in] *pState points to the state buffer. * @return none * * <b>Coefficient and State Ordering:</b> * \par * The coefficients are stored in the array <code>pCoeffs</code> in the following order: * <pre> * {b10, b11, b12, a11, a12, b20, b21, b22, a21, a22, ...} * </pre> * * \par * where <code>b1x</code> and <code>a1x</code> are the coefficients for the first stage, * <code>b2x</code> and <code>a2x</code> are the coefficients for the second stage, * and so on. The <code>pCoeffs</code> array contains a total of <code>5*numStages</code> values. * * \par * The <code>pState</code> is a pointer to state array. * Each Biquad stage has 2 state variables <code>d1,</code> and <code>d2</code>. * The 2 state variables for stage 1 are first, then the 2 state variables for stage 2, and so on. * The state array has a total length of <code>2*numStages</code> values. * The state variables are updated after each block of data is processed; the coefficients are untouched. */ void arm_biquad_cascade_df2T_init_f32( arm_biquad_cascade_df2T_instance_f32 * S, uint8_t numStages, float32_t * pCoeffs, float32_t * pState) { /* Assign filter stages */ S->numStages = numStages; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always 2 * numStages */ memset(pState, 0, (2u * (uint32_t) numStages) * sizeof(float32_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of BiquadCascadeDF2T group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f32.c
C
lgpl
3,243
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_correlate_q15.c * * Description: Correlation of Q15 sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup Corr * @{ */ /** * @brief Correlation of Q15 sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. Length 2 * max(srcALen, srcBLen) - 1. * @return none. * * @details * <b>Scaling and Overflow Behavior:</b> * * \par * The function is implemented using a 64-bit internal accumulator. * Both inputs are in 1.15 format and multiplications yield a 2.30 result. * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. * This approach provides 33 guard bits and there is no risk of overflow. * The 34.30 result is then truncated to 34.15 format by discarding the low 15 bits and then saturated to 1.15 format. * * \par * Refer to <code>arm_correlate_fast_q15()</code> for a faster but less precise version of this function for Cortex-M3 and Cortex-M4. */ void arm_correlate_q15( q15_t * pSrcA, uint32_t srcALen, q15_t * pSrcB, uint32_t srcBLen, q15_t * pDst) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t *pIn1; /* inputA pointer */ q15_t *pIn2; /* inputB pointer */ q15_t *pOut = pDst; /* output pointer */ q63_t sum, acc0, acc1, acc2, acc3; /* Accumulators */ q15_t *px; /* Intermediate inputA pointer */ q15_t *py; /* Intermediate inputB pointer */ q15_t *pSrc1; /* Intermediate pointers */ q31_t x0, x1, x2, x3, c0; /* temporary variables for holding input and coefficient values */ uint32_t j, k = 0u, count, blkCnt, outBlockSize, blockSize1, blockSize2, blockSize3; /* loop counter */ int32_t inc = 1; /* Destination address modifier */ q31_t *pb; /* 32 bit pointer for inputB buffer */ /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ /* But CORR(x, y) is reverse of CORR(y, x) */ /* So, when srcBLen > srcALen, output pointer is made to point to the end of the output buffer */ /* and the destination pointer modifier, inc is set to -1 */ /* If srcALen > srcBLen, zero pad has to be done to srcB to make the two inputs of same length */ /* But to improve the performance, * we include zeroes in the output instead of zero padding either of the the inputs*/ /* If srcALen > srcBLen, * (srcALen - srcBLen) zeroes has to included in the starting of the output buffer */ /* If srcALen < srcBLen, * (srcALen - srcBLen) zeroes has to included in the ending of the output buffer */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = (pSrcA); /* Initialization of inputB pointer */ pIn2 = (pSrcB); /* Number of output samples is calculated */ outBlockSize = (2u * srcALen) - 1u; /* When srcALen > srcBLen, zero padding is done to srcB * to make their lengths equal. * Instead, (outBlockSize - (srcALen + srcBLen - 1)) * number of output samples are made zero */ j = outBlockSize - (srcALen + (srcBLen - 1u)); /* Updating the pointer position to non zero value */ pOut += j; } else { /* Initialization of inputA pointer */ pIn1 = (pSrcB); /* Initialization of inputB pointer */ pIn2 = (pSrcA); /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; /* CORR(x, y) = Reverse order(CORR(y, x)) */ /* Hence set the destination pointer to point to the last output sample */ pOut = pDst + ((srcALen + srcBLen) - 2u); /* Destination address modifier is set to -1 */ inc = -1; } /* The function is internally * divided into three parts according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first part of the * algorithm, the multiplications increase by one for every iteration. * In the second part of the algorithm, srcBLen number of multiplications are done. * In the third part of the algorithm, the multiplications decrease by one * for every iteration.*/ /* The algorithm is implemented in three stages. * The loop counters of each stage is initiated here. */ blockSize1 = srcBLen - 1u; blockSize2 = srcALen - (srcBLen - 1u); blockSize3 = blockSize1; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[srcBlen - 1] * sum = x[0] * y[srcBlen - 2] + x[1] * y[srcBlen - 1] * .... * sum = x[0] * y[0] + x[1] * y[1] +...+ x[srcBLen - 1] * y[srcBLen - 1] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = 1u; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc1 = pIn2 + (srcBLen - 1u); py = pSrc1; /* ------------------------ * Stage1 process * ----------------------*/ /* The first loop starts here */ while(blockSize1 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] * y[srcBLen - 4] , x[1] * y[srcBLen - 3] */ sum = __SMLALD(*__SIMD32(px)++, *__SIMD32(py)++, sum); /* x[3] * y[srcBLen - 1] , x[2] * y[srcBLen - 2] */ sum = __SMLALD(*__SIMD32(px)++, *__SIMD32(py)++, sum); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ /* x[0] * y[srcBLen - 1] */ sum = __SMLALD(*px++, *py++, sum); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q15_t) (__SSAT((sum >> 15), 16)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ py = pSrc1 - count; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[0] + x[1] * y[1] +...+ x[srcBLen-1] * y[srcBLen-1] * sum = x[1] * y[0] + x[2] * y[1] +...+ x[srcBLen] * y[srcBLen-1] * .... * sum = x[srcALen-srcBLen-2] * y[0] + x[srcALen-srcBLen-1] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ py = pIn2; /* Initialize inputB pointer of type q31 */ pb = (q31_t *) (py); /* count is index by which the pointer pIn1 to be incremented */ count = 0u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4, to loop unroll the srcBLen loop */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = blockSize2 >> 2u; while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* read x[0], x[1] samples */ x0 = *(q31_t *) (px++); /* read x[1], x[2] samples */ x1 = *(q31_t *) (px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read the first two inputB samples using SIMD: * y[0] and y[1] */ c0 = *(pb++); /* acc0 += x[0] * y[0] + x[1] * y[1] */ acc0 = __SMLALD(x0, c0, acc0); /* acc1 += x[1] * y[0] + x[2] * y[1] */ acc1 = __SMLALD(x1, c0, acc1); /* Read x[2], x[3] */ x2 = *(q31_t *) (px++); /* Read x[3], x[4] */ x3 = *(q31_t *) (px++); /* acc2 += x[2] * y[0] + x[3] * y[1] */ acc2 = __SMLALD(x2, c0, acc2); /* acc3 += x[3] * y[0] + x[4] * y[1] */ acc3 = __SMLALD(x3, c0, acc3); /* Read y[2] and y[3] */ c0 = *(pb++); /* acc0 += x[2] * y[2] + x[3] * y[3] */ acc0 = __SMLALD(x2, c0, acc0); /* acc1 += x[3] * y[2] + x[4] * y[3] */ acc1 = __SMLALD(x3, c0, acc1); /* Read x[4], x[5] */ x0 = *(q31_t *) (px++); /* Read x[5], x[6] */ x1 = *(q31_t *) (px++); /* acc2 += x[4] * y[2] + x[5] * y[3] */ acc2 = __SMLALD(x0, c0, acc2); /* acc3 += x[5] * y[2] + x[6] * y[3] */ acc3 = __SMLALD(x1, c0, acc3); } while(--k); /* For the next MAC operations, SIMD is not used * So, the 16 bit pointer if inputB, py is updated */ py = (q15_t *) (pb); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; if(k == 1u) { /* Read y[4] */ c0 = *py; #ifdef ARM_MATH_BIG_ENDIAN c0 = c0 << 16u; #else c0 = c0 & 0x0000FFFF; #endif /* #ifdef ARM_MATH_BIG_ENDIAN */ /* Read x[7] */ x3 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALD(x0, c0, acc0); acc1 = __SMLALD(x1, c0, acc1); acc2 = __SMLALDX(x1, c0, acc2); acc3 = __SMLALDX(x3, c0, acc3); } if(k == 2u) { /* Read y[4], y[5] */ c0 = *(pb); /* Read x[7], x[8] */ x3 = *(q31_t *) px++; /* Read x[9] */ x2 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALD(x0, c0, acc0); acc1 = __SMLALD(x1, c0, acc1); acc2 = __SMLALD(x3, c0, acc2); acc3 = __SMLALD(x2, c0, acc3); } if(k == 3u) { /* Read y[4], y[5] */ c0 = *pb++; /* Read x[7], x[8] */ x3 = *(q31_t *) px++; /* Read x[9] */ x2 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALD(x0, c0, acc0); acc1 = __SMLALD(x1, c0, acc1); acc2 = __SMLALD(x3, c0, acc2); acc3 = __SMLALD(x2, c0, acc3); /* Read y[6] */ #ifdef ARM_MATH_BIG_ENDIAN c0 = (*pb); c0 = c0 & 0xFFFF0000; #else c0 = (q15_t) (*pb); c0 = c0 & 0x0000FFFF; #endif /* #ifdef ARM_MATH_BIG_ENDIAN */ /* Read x[10] */ x3 = *(q31_t *) px++; /* Perform the multiply-accumulates */ acc0 = __SMLALDX(x1, c0, acc0); acc1 = __SMLALD(x2, c0, acc1); acc2 = __SMLALDX(x2, c0, acc2); acc3 = __SMLALDX(x3, c0, acc3); } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q15_t) (__SSAT(acc0 >> 15, 16)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; *pOut = (q15_t) (__SSAT(acc1 >> 15, 16)); pOut += inc; *pOut = (q15_t) (__SSAT(acc2 >> 15, 16)); pOut += inc; *pOut = (q15_t) (__SSAT(acc3 >> 15, 16)); pOut += inc; /* Increment the count by 4 as 4 output values are computed */ count += 4u; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; pb = (q31_t *) (py); /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q63_t) * px++ * *py++); sum += ((q63_t) * px++ * *py++); sum += ((q63_t) * px++ * *py++); sum += ((q63_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q63_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q15_t) (__SSAT(sum >> 15, 16)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Increment count by 1, as one output value is computed */ count++; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Loop over srcBLen */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += ((q63_t) * px++ * *py++); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q15_t) (__SSAT(sum >> 15, 16)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Increment the MAC count */ count++; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pIn2; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[0] + x[srcALen-srcBLen+2] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] * sum += x[srcALen-srcBLen+2] * y[0] + x[srcALen-srcBLen+3] * y[1] +...+ x[srcALen-1] * y[srcBLen-1] * .... * sum += x[srcALen-2] * y[0] + x[srcALen-1] * y[1] * sum += x[srcALen-1] * y[0] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = srcBLen - 1u; /* Working pointer of inputA */ pSrc1 = (pIn1 + srcALen) - (srcBLen - 1u); px = pSrc1; /* Working pointer of inputB */ py = pIn2; /* ------------------- * Stage3 process * ------------------*/ while(blockSize3 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ /* sum += x[srcALen - srcBLen + 4] * y[3] , sum += x[srcALen - srcBLen + 3] * y[2] */ sum = __SMLALD(*__SIMD32(px)++, *__SIMD32(py)++, sum); /* sum += x[srcALen - srcBLen + 2] * y[1] , sum += x[srcALen - srcBLen + 1] * y[0] */ sum = __SMLALD(*__SIMD32(px)++, *__SIMD32(py)++, sum); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum = __SMLALD(*px++, *py++, sum); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut = (q15_t) (__SSAT((sum >> 15), 16)); /* Destination pointer is updated according to the address modifier, inc */ pOut += inc; /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pIn2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; } #else /* Run the below code for Cortex-M0 */ q15_t *pIn1 = pSrcA; /* inputA pointer */ q15_t *pIn2 = pSrcB + (srcBLen - 1u); /* inputB pointer */ q63_t sum; /* Accumulators */ uint32_t i = 0u, j; /* loop counters */ uint32_t inv = 0u; /* Reverse order flag */ uint32_t tot = 0u; /* Length */ /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ /* But CORR(x, y) is reverse of CORR(y, x) */ /* So, when srcBLen > srcALen, output pointer is made to point to the end of the output buffer */ /* and a varaible, inv is set to 1 */ /* If lengths are not equal then zero pad has to be done to make the two * inputs of same length. But to improve the performance, we include zeroes * in the output instead of zero padding either of the the inputs*/ /* If srcALen > srcBLen, (srcALen - srcBLen) zeroes has to included in the * starting of the output buffer */ /* If srcALen < srcBLen, (srcALen - srcBLen) zeroes has to included in the * ending of the output buffer */ /* Once the zero padding is done the remaining of the output is calcualted * using convolution but with the shorter signal time shifted. */ /* Calculate the length of the remaining sequence */ tot = ((srcALen + srcBLen) - 2u); if(srcALen > srcBLen) { /* Calculating the number of zeros to be padded to the output */ j = srcALen - srcBLen; /* Initialise the pointer after zero padding */ pDst += j; } else if(srcALen < srcBLen) { /* Initialization to inputB pointer */ pIn1 = pSrcB; /* Initialization to the end of inputA pointer */ pIn2 = pSrcA + (srcALen - 1u); /* Initialisation of the pointer after zero padding */ pDst = pDst + tot; /* Swapping the lengths */ j = srcALen; srcALen = srcBLen; srcBLen = j; /* Setting the reverse flag */ inv = 1; } /* Loop to calculate convolution for output length number of times */ for (i = 0u; i <= tot; i++) { /* Initialize sum with zero to carry on MAC operations */ sum = 0; /* Loop to perform MAC operations according to convolution equation */ for (j = 0u; j <= i; j++) { /* Check the array limitations */ if((((i - j) < srcBLen) && (j < srcALen))) { /* z[i] += x[i-j] * y[j] */ sum += ((q31_t) pIn1[j] * pIn2[-((int32_t) i - j)]); } } /* Store the output in the destination buffer */ if(inv == 1) *pDst-- = (q15_t) __SSAT((sum >> 15u), 16u); else *pDst++ = (q15_t) __SSAT((sum >> 15u), 16u); } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of Corr group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_correlate_q15.c
C
lgpl
22,383
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_decimate_fast_q15.c * * Description: Fast Q15 FIR Decimator. * * Target Processor: Cortex-M4/Cortex-M3 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_decimate * @{ */ /** * @brief Processing function for the Q15 FIR decimator (fast variant) for Cortex-M3 and Cortex-M4. * @param[in] *S points to an instance of the Q15 FIR decimator structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data * @param[in] blockSize number of input samples to process per call. * @return none * * <b>Scaling and Overflow Behavior:</b> * \par * This fast version uses a 32-bit accumulator with 2.30 format. * The accumulator maintains full precision of the intermediate multiplication results but provides only a single guard bit. * Thus, if the accumulator result overflows it wraps around and distorts the result. * In order to avoid overflows completely the input signal must be scaled down by log2(numTaps) bits (log2 is read as log to the base 2). * The 2.30 accumulator is then truncated to 2.15 format and saturated to yield the 1.15 result. * * \par * Refer to the function <code>arm_fir_decimate_q15()</code> for a slower implementation of this function which uses 64-bit accumulation to avoid wrap around distortion. * Both the slow and the fast versions use the same instance structure. * Use the function <code>arm_fir_decimate_init_q15()</code> to initialize the filter structure. */ void arm_fir_decimate_fast_q15( const arm_fir_decimate_instance_q15 * S, q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ q15_t *px; /* Temporary pointer for state buffer */ q15_t *pb; /* Temporary pointer coefficient buffer */ q31_t x0, c0; /* Temporary variables to hold state and coefficient values */ q31_t sum0; /* Accumulators */ uint32_t numTaps = S->numTaps; /* Number of taps */ uint32_t i, blkCnt, tapCnt, outBlockSize = blockSize / S->M; /* Loop counters */ /* S->pState buffer contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (numTaps - 1u); /* Total number of output samples to be computed */ blkCnt = outBlockSize; while(blkCnt > 0u) { /* Copy decimation factor number of new input samples into the state buffer */ i = S->M; do { *pStateCurnt++ = *pSrc++; } while(--i); /*Set sum to zero */ sum0 = 0; /* Initialize state pointer */ px = pState; /* Initialize coeff pointer */ pb = pCoeffs; /* Loop unrolling. Process 4 taps at a time. */ tapCnt = numTaps >> 2; /* Loop over the number of taps. Unroll by a factor of 4. ** Repeat until we've computed numTaps-4 coefficients. */ while(tapCnt > 0u) { /* Read the Read b[numTaps-1] and b[numTaps-2] coefficients */ c0 = *__SIMD32(pb)++; /* Read x[n-numTaps-1] and x[n-numTaps-2]sample */ x0 = *__SIMD32(px)++; /* Perform the multiply-accumulate */ sum0 = __SMLAD(x0, c0, sum0); /* Read the b[numTaps-3] and b[numTaps-4] coefficient */ c0 = *__SIMD32(pb)++; /* Read x[n-numTaps-2] and x[n-numTaps-3] sample */ x0 = *__SIMD32(px)++; /* Perform the multiply-accumulate */ sum0 = __SMLAD(x0, c0, sum0); /* Decrement the loop counter */ tapCnt--; } /* If the filter length is not a multiple of 4, compute the remaining filter taps */ tapCnt = numTaps % 0x4u; while(tapCnt > 0u) { /* Read coefficients */ c0 = *pb++; /* Fetch 1 state variable */ x0 = *px++; /* Perform the multiply-accumulate */ sum0 = __SMLAD(x0, c0, sum0); /* Decrement the loop counter */ tapCnt--; } /* Advance the state pointer by the decimation factor * to process the next group of decimation factor number samples */ pState = pState + S->M; /* Store filter output , smlad returns the values in 2.14 format */ /* so downsacle by 15 to get output in 1.15 */ *pDst++ = (q15_t) ((sum0 >> 15)); /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; i = (numTaps - 1u) >> 2u; /* copy data */ while(i > 0u) { *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; /* Decrement the loop counter */ i--; } i = (numTaps - 1u) % 0x04u; /* copy data */ while(i > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ i--; } } /** * @} end of FIR_decimate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c
C
lgpl
6,369
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_interpolate_f32.c * * Description: FIR interpolation for floating-point sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @defgroup FIR_Interpolate Finite Impulse Response (FIR) Interpolator * * These functions combine an upsampler (zero stuffer) and an FIR filter. * They are used in multirate systems for increasing the sample rate of a signal without introducing high frequency images. * Conceptually, the functions are equivalent to the block diagram below: * \image html FIRInterpolator.gif "Components included in the FIR Interpolator functions" * After upsampling by a factor of <code>L</code>, the signal should be filtered by a lowpass filter with a normalized * cutoff frequency of <code>1/L</code> in order to eliminate high frequency copies of the spectrum. * The user of the function is responsible for providing the filter coefficients. * * The FIR interpolator functions provided in the CMSIS DSP Library combine the upsampler and FIR filter in an efficient manner. * The upsampler inserts <code>L-1</code> zeros between each sample. * Instead of multiplying by these zero values, the FIR filter is designed to skip them. * This leads to an efficient implementation without any wasted effort. * The functions operate on blocks of input and output data. * <code>pSrc</code> points to an array of <code>blockSize</code> input values and * <code>pDst</code> points to an array of <code>blockSize*L</code> output values. * * The library provides separate functions for Q15, Q31, and floating-point data types. * * \par Algorithm: * The functions use a polyphase filter structure: * <pre> * y[n] = b[0] * x[n] + b[L] * x[n-1] + ... + b[L*(phaseLength-1)] * x[n-phaseLength+1] * y[n+1] = b[1] * x[n] + b[L+1] * x[n-1] + ... + b[L*(phaseLength-1)+1] * x[n-phaseLength+1] * ... * y[n+(L-1)] = b[L-1] * x[n] + b[2*L-1] * x[n-1] + ....+ b[L*(phaseLength-1)+(L-1)] * x[n-phaseLength+1] * </pre> * This approach is more efficient than straightforward upsample-then-filter algorithms. * With this method the computation is reduced by a factor of <code>1/L</code> when compared to using a standard FIR filter. * \par * <code>pCoeffs</code> points to a coefficient array of size <code>numTaps</code>. * <code>numTaps</code> must be a multiple of the interpolation factor <code>L</code> and this is checked by the * initialization functions. * Internally, the function divides the FIR filter's impulse response into shorter filters of length * <code>phaseLength=numTaps/L</code>. * Coefficients are stored in time reversed order. * \par * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * \par * <code>pState</code> points to a state array of size <code>blockSize + phaseLength - 1</code>. * Samples in the state buffer are stored in the order: * \par * <pre> * {x[n-phaseLength+1], x[n-phaseLength], x[n-phaseLength-1], x[n-phaseLength-2]....x[0], x[1], ..., x[blockSize-1]} * </pre> * The state variables are updated after each block of data is processed, the coefficients are untouched. * * \par Instance Structure * The coefficients and state variables for a filter are stored together in an instance data structure. * A separate instance structure must be defined for each filter. * Coefficient arrays may be shared among several instances while state variable array should be allocated separately. * There are separate instance structure declarations for each of the 3 supported data types. * * \par Initialization Functions * There is also an associated initialization function for each data type. * The initialization function performs the following operations: * - Sets the values of the internal structure fields. * - Zeros out the values in the state buffer. * - Checks to make sure that the length of the filter is a multiple of the interpolation factor. * * \par * Use of the initialization function is optional. * However, if the initialization function is used, then the instance structure cannot be placed into a const data section. * To place an instance structure into a const data section, the instance structure must be manually initialized. * The code below statically initializes each of the 3 different data type filter instance structures * <pre> * arm_fir_interpolate_instance_f32 S = {L, phaseLength, pCoeffs, pState}; * arm_fir_interpolate_instance_q31 S = {L, phaseLength, pCoeffs, pState}; * arm_fir_interpolate_instance_q15 S = {L, phaseLength, pCoeffs, pState}; * </pre> * where <code>L</code> is the interpolation factor; <code>phaseLength=numTaps/L</code> is the * length of each of the shorter FIR filters used internally, * <code>pCoeffs</code> is the address of the coefficient buffer; * <code>pState</code> is the address of the state buffer. * Be sure to set the values in the state buffer to zeros when doing static initialization. * * \par Fixed-Point Behavior * Care must be taken when using the fixed-point versions of the FIR interpolate filter functions. * In particular, the overflow and saturation behavior of the accumulator used in each function must be considered. * Refer to the function specific documentation below for usage guidelines. */ /** * @addtogroup FIR_Interpolate * @{ */ /** * @brief Processing function for the floating-point FIR interpolator. * @param[in] *S points to an instance of the floating-point FIR interpolator structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of input samples to process per call. * @return none. */ void arm_fir_interpolate_f32( const arm_fir_interpolate_instance_f32 * S, float32_t * pSrc, float32_t * pDst, uint32_t blockSize) { float32_t *pState = S->pState; /* State pointer */ float32_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ float32_t *pStateCurnt; /* Points to the current sample of the state */ float32_t *ptr1, *ptr2; /* Temporary pointers for state and coefficient buffers */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ float32_t sum0; /* Accumulators */ float32_t x0, c0; /* Temporary variables to hold state and coefficient values */ uint32_t i, blkCnt, j; /* Loop counters */ uint16_t phaseLen = S->phaseLength, tapCnt; /* Length of each polyphase filter component */ /* S->pState buffer contains previous frame (phaseLen - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (phaseLen - 1u); /* Total number of intput samples */ blkCnt = blockSize; /* Loop over the blockSize. */ while(blkCnt > 0u) { /* Copy new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Address modifier index of coefficient buffer */ j = 1u; /* Loop over the Interpolation factor. */ i = S->L; while(i > 0u) { /* Set accumulator to zero */ sum0 = 0.0f; /* Initialize state pointer */ ptr1 = pState; /* Initialize coefficient pointer */ ptr2 = pCoeffs + (S->L - j); /* Loop over the polyPhase length. Unroll by a factor of 4. ** Repeat until we've computed numTaps-(4*S->L) coefficients. */ tapCnt = phaseLen >> 2u; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *(ptr2); /* Upsampling is done by stuffing L-1 zeros between each sample. * So instead of multiplying zeros with coefficients, * Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += x0 * c0; /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += x0 * c0; /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += x0 * c0; /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 += x0 * c0; /* Decrement the loop counter */ tapCnt--; } /* If the polyPhase length is not a multiple of 4, compute the remaining filter taps */ tapCnt = phaseLen % 0x4u; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ sum0 += *(ptr1++) * (*ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Decrement the loop counter */ tapCnt--; } /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = sum0; /* Increment the address modifier index of coefficient buffer */ j++; /* Decrement the loop counter */ i--; } /* Advance the state pointer by 1 * to process the next group of interpolation factor number samples */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last phaseLen - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; tapCnt = (phaseLen - 1u) >> 2u; /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } tapCnt = (phaseLen - 1u) % 0x04u; while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ float32_t sum; /* Accumulator */ uint32_t i, blkCnt; /* Loop counters */ uint16_t phaseLen = S->phaseLength, tapCnt; /* Length of each polyphase filter component */ /* S->pState buffer contains previous frame (phaseLen - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (phaseLen - 1u); /* Total number of intput samples */ blkCnt = blockSize; /* Loop over the blockSize. */ while(blkCnt > 0u) { /* Copy new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Loop over the Interpolation factor. */ i = S->L; while(i > 0u) { /* Set accumulator to zero */ sum = 0.0f; /* Initialize state pointer */ ptr1 = pState; /* Initialize coefficient pointer */ ptr2 = pCoeffs + (i - 1u); /* Loop over the polyPhase length */ tapCnt = phaseLen; while(tapCnt > 0u) { /* Perform the multiply-accumulate */ sum += *ptr1++ * *ptr2; /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Decrement the loop counter */ tapCnt--; } /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = sum; /* Decrement the loop counter */ i--; } /* Advance the state pointer by 1 * to process the next group of interpolation factor number samples */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last phaseLen - 1 samples to the start of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; tapCnt = phaseLen - 1u; while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_Interpolate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_f32.c
C
lgpl
14,212
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_conv_f32.c * * Description: Convolution of floating-point sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @defgroup Conv Convolution * * Convolution is a mathematical operation that operates on two finite length vectors to generate a finite length output vector. * Convolution is similar to correlation and is frequently used in filtering and data analysis. * The CMSIS DSP library contains functions for convolving Q7, Q15, Q31, and floating-point data types. * The library also provides fast versions of the Q15 and Q31 functions on Cortex-M4 and Cortex-M3. * * \par Algorithm * Let <code>a[n]</code> and <code>b[n]</code> be sequences of length <code>srcALen</code> and <code>srcBLen</code> samples respectively. * Then the convolution * * <pre> * c[n] = a[n] * b[n] * </pre> * * \par * is defined as * \image html ConvolutionEquation.gif * \par * Note that <code>c[n]</code> is of length <code>srcALen + srcBLen - 1</code> and is defined over the interval <code>n=0, 1, 2, ..., srcALen + srcBLen - 2</code>. * <code>pSrcA</code> points to the first input vector of length <code>srcALen</code> and * <code>pSrcB</code> points to the second input vector of length <code>srcBLen</code>. * The output result is written to <code>pDst</code> and the calling function must allocate <code>srcALen+srcBLen-1</code> words for the result. * * \par * Conceptually, when two signals <code>a[n]</code> and <code>b[n]</code> are convolved, * the signal <code>b[n]</code> slides over <code>a[n]</code>. * For each offset \c n, the overlapping portions of a[n] and b[n] are multiplied and summed together. * * \par * Note that convolution is a commutative operation: * * <pre> * a[n] * b[n] = b[n] * a[n]. * </pre> * * \par * This means that switching the A and B arguments to the convolution functions has no effect. * * <b>Fixed-Point Behavior</b> * * \par * Convolution requires summing up a large number of intermediate products. * As such, the Q7, Q15, and Q31 functions run a risk of overflow and saturation. * Refer to the function specific documentation below for further details of the particular algorithm used. */ /** * @addtogroup Conv * @{ */ /** * @brief Convolution of floating-point sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. Length srcALen+srcBLen-1. * @return none. */ void arm_conv_f32( float32_t * pSrcA, uint32_t srcALen, float32_t * pSrcB, uint32_t srcBLen, float32_t * pDst) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ float32_t *pIn1; /* inputA pointer */ float32_t *pIn2; /* inputB pointer */ float32_t *pOut = pDst; /* output pointer */ float32_t *px; /* Intermediate inputA pointer */ float32_t *py; /* Intermediate inputB pointer */ float32_t *pSrc1, *pSrc2; /* Intermediate pointers */ float32_t sum, acc0, acc1, acc2, acc3; /* Accumulator */ float32_t x0, x1, x2, x3, c0; /* Temporary variables to hold state and coefficient values */ uint32_t j, k, count, blkCnt, blockSize1, blockSize2, blockSize3; /* loop counters */ /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = pSrcA; /* Initialization of inputB pointer */ pIn2 = pSrcB; } else { /* Initialization of inputA pointer */ pIn1 = pSrcB; /* Initialization of inputB pointer */ pIn2 = pSrcA; /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; } /* conv(x,y) at n = x[n] * y[0] + x[n-1] * y[1] + x[n-2] * y[2] + ...+ x[n-N+1] * y[N -1] */ /* The function is internally * divided into three stages according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first stage of the * algorithm, the multiplications increase by one for every iteration. * In the second stage of the algorithm, srcBLen number of multiplications are done. * In the third stage of the algorithm, the multiplications decrease by one * for every iteration. */ /* The algorithm is implemented in three stages. The loop counters of each stage is initiated here. */ blockSize1 = srcBLen - 1u; blockSize2 = srcALen - (srcBLen - 1u); blockSize3 = blockSize1; /* -------------------------- * initializations of stage1 * -------------------------*/ /* sum = x[0] * y[0] * sum = x[0] * y[1] + x[1] * y[0] * .... * sum = x[0] * y[srcBlen - 1] + x[1] * y[srcBlen - 2] +...+ x[srcBLen - 1] * y[0] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = 1u; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ py = pIn2; /* ------------------------ * Stage1 process * ----------------------*/ /* The first stage starts here */ while(blockSize1 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] * y[srcBLen - 1] */ sum += *px++ * *py--; /* x[1] * y[srcBLen - 2] */ sum += *px++ * *py--; /* x[2] * y[srcBLen - 3] */ sum += *px++ * *py--; /* x[3] * y[srcBLen - 4] */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ py = pIn2 + count; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[srcBLen-1] + x[1] * y[srcBLen-2] +...+ x[srcBLen-1] * y[0] * sum = x[1] * y[srcBLen-1] + x[2] * y[srcBLen-2] +...+ x[srcBLen] * y[0] * .... * sum = x[srcALen-srcBLen-2] * y[srcBLen-1] + x[srcALen] * y[srcBLen-2] +...+ x[srcALen-1] * y[0] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* count is index by which the pointer pIn1 to be incremented */ count = 1u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = blockSize2 >> 2u; while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0.0f; acc1 = 0.0f; acc2 = 0.0f; acc3 = 0.0f; /* read x[0], x[1], x[2] samples */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read y[srcBLen - 1] sample */ c0 = *(py--); /* Read x[3] sample */ x3 = *(px++); /* Perform the multiply-accumulate */ /* acc0 += x[0] * y[srcBLen - 1] */ acc0 += x0 * c0; /* acc1 += x[1] * y[srcBLen - 1] */ acc1 += x1 * c0; /* acc2 += x[2] * y[srcBLen - 1] */ acc2 += x2 * c0; /* acc3 += x[3] * y[srcBLen - 1] */ acc3 += x3 * c0; /* Read y[srcBLen - 2] sample */ c0 = *(py--); /* Read x[4] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ /* acc0 += x[1] * y[srcBLen - 2] */ acc0 += x1 * c0; /* acc1 += x[2] * y[srcBLen - 2] */ acc1 += x2 * c0; /* acc2 += x[3] * y[srcBLen - 2] */ acc2 += x3 * c0; /* acc3 += x[4] * y[srcBLen - 2] */ acc3 += x0 * c0; /* Read y[srcBLen - 3] sample */ c0 = *(py--); /* Read x[5] sample */ x1 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[2] * y[srcBLen - 3] */ acc0 += x2 * c0; /* acc1 += x[3] * y[srcBLen - 2] */ acc1 += x3 * c0; /* acc2 += x[4] * y[srcBLen - 2] */ acc2 += x0 * c0; /* acc3 += x[5] * y[srcBLen - 2] */ acc3 += x1 * c0; /* Read y[srcBLen - 4] sample */ c0 = *(py--); /* Read x[6] sample */ x2 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[3] * y[srcBLen - 4] */ acc0 += x3 * c0; /* acc1 += x[4] * y[srcBLen - 4] */ acc1 += x0 * c0; /* acc2 += x[5] * y[srcBLen - 4] */ acc2 += x1 * c0; /* acc3 += x[6] * y[srcBLen - 4] */ acc3 += x2 * c0; } while(--k); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Read y[srcBLen - 5] sample */ c0 = *(py--); /* Read x[7] sample */ x3 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[4] * y[srcBLen - 5] */ acc0 += x0 * c0; /* acc1 += x[5] * y[srcBLen - 5] */ acc1 += x1 * c0; /* acc2 += x[6] * y[srcBLen - 5] */ acc2 += x2 * c0; /* acc3 += x[7] * y[srcBLen - 5] */ acc3 += x3 * c0; /* Reuse the present samples for the next MAC */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; *pOut++ = acc1; *pOut++ = acc2; *pOut++ = acc3; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pSrc2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ sum += *px++ * *py--; sum += *px++ * *py--; sum += *px++ * *py--; sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* srcBLen number of MACS should be performed */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[srcBLen-1] + x[srcALen-srcBLen+2] * y[srcBLen-2] +...+ x[srcALen-1] * y[1] * sum += x[srcALen-srcBLen+2] * y[srcBLen-1] + x[srcALen-srcBLen+3] * y[srcBLen-2] +...+ x[srcALen-1] * y[2] * .... * sum += x[srcALen-2] * y[srcBLen-1] + x[srcALen-1] * y[srcBLen-2] * sum += x[srcALen-1] * y[srcBLen-1] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The blockSize3 variable holds the number of MAC operations performed */ /* Working pointer of inputA */ pSrc1 = (pIn1 + srcALen) - (srcBLen - 1u); px = pSrc1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* ------------------- * Stage3 process * ------------------*/ while(blockSize3 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = blockSize3 >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* sum += x[srcALen - srcBLen + 1] * y[srcBLen - 1] */ sum += *px++ * *py--; /* sum += x[srcALen - srcBLen + 2] * y[srcBLen - 2] */ sum += *px++ * *py--; /* sum += x[srcALen - srcBLen + 3] * y[srcBLen - 3] */ sum += *px++ * *py--; /* sum += x[srcALen - srcBLen + 4] * y[srcBLen - 4] */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* If the blockSize3 is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = blockSize3 % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ /* sum += x[srcALen-1] * y[srcBLen-1] */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pSrc2; /* Decrement the loop counter */ blockSize3--; } #else /* Run the below code for Cortex-M0 */ float32_t *pIn1 = pSrcA; /* inputA pointer */ float32_t *pIn2 = pSrcB; /* inputB pointer */ float32_t sum; /* Accumulator */ uint32_t i, j; /* loop counters */ /* Loop to calculate convolution for output length number of times */ for (i = 0u; i < ((srcALen + srcBLen) - 1u); i++) { /* Initialize sum with zero to carry out MAC operations */ sum = 0.0f; /* Loop to perform MAC operations according to convolution equation */ for (j = 0u; j <= i; j++) { /* Check the array limitations */ if((((i - j) < srcBLen) && (j < srcALen))) { /* z[i] += x[i-j] * y[j] */ sum += pIn1[j] * pIn2[i - j]; } } /* Store the output in the destination buffer */ pDst[i] = sum; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of Conv group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_f32.c
C
lgpl
18,801
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_q15.c * * Description: Processing function for the * Q15 Biquad cascade DirectFormI(DF1) filter. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1 * @{ */ /** * @brief Processing function for the Q15 Biquad cascade filter. * @param[in] *S points to an instance of the Q15 Biquad cascade structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the location where the output result is written. * @param[in] blockSize number of samples to process per call. * @return none. * * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using a 64-bit internal accumulator. * Both coefficients and state variables are represented in 1.15 format and multiplications yield a 2.30 result. * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. * The accumulator is then shifted by <code>postShift</code> bits to truncate the result to 1.15 format by discarding the low 16 bits. * Finally, the result is saturated to 1.15 format. * * \par * Refer to the function <code>arm_biquad_cascade_df1_fast_q15()</code> for a faster but less precise implementation of this filter for Cortex-M3 and Cortex-M4. */ void arm_biquad_cascade_df1_q15( const arm_biquad_casd_df1_inst_q15 * S, q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t *pIn = pSrc; /* Source pointer */ q15_t *pOut = pDst; /* Destination pointer */ q31_t in; /* Temporary variable to hold input value */ q31_t out; /* Temporary variable to hold output value */ q31_t b0; /* Temporary variable to hold bo value */ q31_t b1, a1; /* Filter coefficients */ q31_t state_in, state_out; /* Filter state variables */ q63_t acc; /* Accumulator */ int32_t shift = (15 - (int32_t) S->postShift); /* Post shift */ q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q31_t *pState_q31; /* 32-bit state pointer for SIMD implementation */ uint32_t sample, stage = (uint32_t) S->numStages; /* Stage loop counter */ do { /* Initialize state pointer of type q31 */ pState_q31 = (q31_t *) (pState); /* Read the b0 and 0 coefficients using SIMD */ b0 = *__SIMD32(pCoeffs)++; /* Read the b1 and b2 coefficients using SIMD */ b1 = *__SIMD32(pCoeffs)++; /* Read the a1 and a2 coefficients using SIMD */ a1 = *__SIMD32(pCoeffs)++; /* Read the input state values from the state buffer: x[n-1], x[n-2] */ state_in = (q31_t) (*pState_q31++); /* Read the output state values from the state buffer: y[n-1], y[n-2] */ state_out = (q31_t) (*pState_q31); /* Apply loop unrolling and compute 2 output values simultaneously. */ /* The variable acc hold output values that are being computed: * * acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] * acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ sample = blockSize >> 1u; /* First part of the processing with loop unrolling. Compute 2 outputs at a time. ** a second loop below computes the remaining 1 sample. */ while(sample > 0u) { /* Read the input */ in = *__SIMD32(pIn)++; /* out = b0 * x[n] + 0 * 0 */ out = __SMUAD(b0, in); /* acc += b1 * x[n-1] + b2 * x[n-2] + out */ acc = __SMLALD(b1, state_in, out); /* acc += a1 * y[n-1] + a2 * y[n-2] */ acc = __SMLALD(a1, state_out, acc); /* The result is converted from 3.29 to 1.31 if postShift = 1, and then saturation is applied */ out = __SSAT((acc >> shift), 16); /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ /* x[n-N], x[n-N-1] are packed together to make state_in of type q31 */ /* y[n-N], y[n-N-1] are packed together to make state_out of type q31 */ #ifndef ARM_MATH_BIG_ENDIAN state_in = __PKHBT(in, state_in, 16); state_out = __PKHBT(out, state_out, 16); #else state_in = __PKHBT(state_in >> 16, (in >> 16), 16); state_out = __PKHBT(state_out >> 16, (out), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* out = b0 * x[n] + 0 * 0 */ out = __SMUADX(b0, in); /* acc += b1 * x[n-1] + b2 * x[n-2] + out */ acc = __SMLALD(b1, state_in, out); /* acc += a1 * y[n-1] + a2 * y[n-2] */ acc = __SMLALD(a1, state_out, acc); /* The result is converted from 3.29 to 1.31 if postShift = 1, and then saturation is applied */ out = __SSAT((acc >> shift), 16); /* Store the output in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pOut)++ = __PKHBT(state_out, out, 16); #else *__SIMD32(pOut)++ = __PKHBT(out, state_out >> 16, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ /* x[n-N], x[n-N-1] are packed together to make state_in of type q31 */ /* y[n-N], y[n-N-1] are packed together to make state_out of type q31 */ #ifndef ARM_MATH_BIG_ENDIAN state_in = __PKHBT(in >> 16, state_in, 16); state_out = __PKHBT(out, state_out, 16); #else state_in = __PKHBT(state_in >> 16, in, 16); state_out = __PKHBT(state_out >> 16, out, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ sample--; } /* If the blockSize is not a multiple of 2, compute any remaining output samples here. ** No loop unrolling is used. */ if((blockSize & 0x1u) != 0u) { /* Read the input */ in = *pIn++; /* out = b0 * x[n] + 0 * 0 */ #ifndef ARM_MATH_BIG_ENDIAN out = __SMUAD(b0, in); #else out = __SMUADX(b0, in); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* acc = b1 * x[n-1] + b2 * x[n-2] + out */ acc = __SMLALD(b1, state_in, out); /* acc += a1 * y[n-1] + a2 * y[n-2] */ acc = __SMLALD(a1, state_out, acc); /* The result is converted from 3.29 to 1.31 if postShift = 1, and then saturation is applied */ out = __SSAT((acc >> shift), 16); /* Store the output in the destination buffer. */ *pOut++ = (q15_t) out; /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ /* x[n-N], x[n-N-1] are packed together to make state_in of type q31 */ /* y[n-N], y[n-N-1] are packed together to make state_out of type q31 */ #ifndef ARM_MATH_BIG_ENDIAN state_in = __PKHBT(in, state_in, 16); state_out = __PKHBT(out, state_out, 16); #else state_in = __PKHBT(state_in >> 16, in, 16); state_out = __PKHBT(state_out >> 16, out, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ } /* The first stage goes from the input wire to the output wire. */ /* Subsequent numStages occur in-place in the output wire */ pIn = pDst; /* Reset the output pointer */ pOut = pDst; /* Store the updated state variables back into the state array */ *__SIMD32(pState)++ = state_in; *__SIMD32(pState)++ = state_out; /* Decrement the loop counter */ stage--; } while(stage > 0u); #else /* Run the below code for Cortex-M0 */ q15_t *pIn = pSrc; /* Source pointer */ q15_t *pOut = pDst; /* Destination pointer */ q15_t b0, b1, b2, a1, a2; /* Filter coefficients */ q15_t Xn1, Xn2, Yn1, Yn2; /* Filter state variables */ q15_t Xn; /* temporary input */ q63_t acc; /* Accumulator */ int32_t shift = (15 - (int32_t) S->postShift); /* Post shift */ q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ uint32_t sample, stage = (uint32_t) S->numStages; /* Stage loop counter */ do { /* Reading the coefficients */ b0 = *pCoeffs++; b1 = *pCoeffs++; b2 = *pCoeffs++; a1 = *pCoeffs++; a2 = *pCoeffs++; /* Reading the state values */ Xn1 = pState[0]; Xn2 = pState[1]; Yn1 = pState[2]; Yn2 = pState[3]; /* The variables acc holds the output value that is computed: * acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ sample = blockSize; while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q31_t) b0 *Xn; /* acc += b1 * x[n-1] */ acc += (q31_t) b1 *Xn1; /* acc += b[2] * x[n-2] */ acc += (q31_t) b2 *Xn2; /* acc += a1 * y[n-1] */ acc += (q31_t) a1 *Yn1; /* acc += a2 * y[n-2] */ acc += (q31_t) a2 *Yn2; /* The result is converted to 1.31 */ acc = __SSAT((acc >> shift), 16); /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ Xn2 = Xn1; Xn1 = Xn; Yn2 = Yn1; Yn1 = (q15_t) acc; /* Store the output in the destination buffer. */ *pOut++ = (q15_t) acc; /* decrement the loop counter */ sample--; } /* The first stage goes from the input buffer to the output buffer. */ /* Subsequent stages occur in-place in the output buffer */ pIn = pDst; /* Reset to destination pointer */ pOut = pDst; /* Store the updated state variables back into the pState array */ *pState++ = Xn1; *pState++ = Xn2; *pState++ = Yn1; *pState++ = Yn2; } while(--stage); #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BiquadCascadeDF1 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_q15.c
C
lgpl
12,980
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_q31.c * * Description: Processing function for the * Q31 Biquad cascade filter * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1 * @{ */ /** * @brief Processing function for the Q31 Biquad cascade filter. * @param[in] *S points to an instance of the Q31 Biquad cascade structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using an internal 64-bit accumulator. * The accumulator has a 2.62 format and maintains full precision of the intermediate multiplication results but provides only a single guard bit. * Thus, if the accumulator result overflows it wraps around rather than clip. * In order to avoid overflows completely the input signal must be scaled down by 2 bits and lie in the range [-0.25 +0.25). * After all 5 multiply-accumulates are performed, the 2.62 accumulator is shifted by <code>postShift</code> bits and the result truncated to * 1.31 format by discarding the low 32 bits. * * \par * Refer to the function <code>arm_biquad_cascade_df1_fast_q31()</code> for a faster but less precise implementation of this filter for Cortex-M3 and Cortex-M4. */ void arm_biquad_cascade_df1_q31( const arm_biquad_casd_df1_inst_q31 * S, q31_t * pSrc, q31_t * pDst, uint32_t blockSize) { q31_t *pIn = pSrc; /* input pointer initialization */ q31_t *pOut = pDst; /* output pointer initialization */ q31_t *pState = S->pState; /* pState pointer initialization */ q31_t *pCoeffs = S->pCoeffs; /* coeff pointer initialization */ q63_t acc; /* accumulator */ q31_t Xn1, Xn2, Yn1, Yn2; /* Filter state variables */ q31_t b0, b1, b2, a1, a2; /* Filter coefficients */ q31_t Xn; /* temporary input */ uint32_t shift = 32u - ((uint32_t) S->postShift + 1u); /* Shift to be applied to the output */ uint32_t sample, stage = S->numStages; /* loop counters */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ do { /* Reading the coefficients */ b0 = *pCoeffs++; b1 = *pCoeffs++; b2 = *pCoeffs++; a1 = *pCoeffs++; a2 = *pCoeffs++; /* Reading the state values */ Xn1 = pState[0]; Xn2 = pState[1]; Yn1 = pState[2]; Yn2 = pState[3]; /* Apply loop unrolling and compute 4 output values simultaneously. */ /* The variable acc hold output values that are being computed: * * acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ sample = blockSize >> 2u; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q63_t) b0 *Xn; /* acc += b1 * x[n-1] */ acc += (q63_t) b1 *Xn1; /* acc += b[2] * x[n-2] */ acc += (q63_t) b2 *Xn2; /* acc += a1 * y[n-1] */ acc += (q63_t) a1 *Yn1; /* acc += a2 * y[n-2] */ acc += (q63_t) a2 *Yn2; /* The result is converted to 1.31 , Yn2 variable is reused */ Yn2 = (q31_t) (acc >> shift); /* Store the output in the destination buffer. */ *pOut++ = Yn2; /* Read the second input */ Xn2 = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q63_t) b0 *Xn2; /* acc += b1 * x[n-1] */ acc += (q63_t) b1 *Xn; /* acc += b[2] * x[n-2] */ acc += (q63_t) b2 *Xn1; /* acc += a1 * y[n-1] */ acc += (q63_t) a1 *Yn2; /* acc += a2 * y[n-2] */ acc += (q63_t) a2 *Yn1; /* The result is converted to 1.31, Yn1 variable is reused */ Yn1 = (q31_t) (acc >> shift); /* Store the output in the destination buffer. */ *pOut++ = Yn1; /* Read the third input */ Xn1 = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q63_t) b0 *Xn1; /* acc += b1 * x[n-1] */ acc += (q63_t) b1 *Xn2; /* acc += b[2] * x[n-2] */ acc += (q63_t) b2 *Xn; /* acc += a1 * y[n-1] */ acc += (q63_t) a1 *Yn1; /* acc += a2 * y[n-2] */ acc += (q63_t) a2 *Yn2; /* The result is converted to 1.31, Yn2 variable is reused */ Yn2 = (q31_t) (acc >> shift); /* Store the output in the destination buffer. */ *pOut++ = Yn2; /* Read the forth input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q63_t) b0 *Xn; /* acc += b1 * x[n-1] */ acc += (q63_t) b1 *Xn1; /* acc += b[2] * x[n-2] */ acc += (q63_t) b2 *Xn2; /* acc += a1 * y[n-1] */ acc += (q63_t) a1 *Yn2; /* acc += a2 * y[n-2] */ acc += (q63_t) a2 *Yn1; /* The result is converted to 1.31, Yn1 variable is reused */ Yn1 = (q31_t) (acc >> shift); /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ Xn2 = Xn1; Xn1 = Xn; /* Store the output in the destination buffer. */ *pOut++ = Yn1; /* decrement the loop counter */ sample--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ sample = (blockSize & 0x3u); while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q63_t) b0 *Xn; /* acc += b1 * x[n-1] */ acc += (q63_t) b1 *Xn1; /* acc += b[2] * x[n-2] */ acc += (q63_t) b2 *Xn2; /* acc += a1 * y[n-1] */ acc += (q63_t) a1 *Yn1; /* acc += a2 * y[n-2] */ acc += (q63_t) a2 *Yn2; /* The result is converted to 1.31 */ acc = acc >> shift; /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ Xn2 = Xn1; Xn1 = Xn; Yn2 = Yn1; Yn1 = (q31_t) acc; /* Store the output in the destination buffer. */ *pOut++ = (q31_t) acc; /* decrement the loop counter */ sample--; } /* The first stage goes from the input buffer to the output buffer. */ /* Subsequent stages occur in-place in the output buffer */ pIn = pDst; /* Reset to destination pointer */ pOut = pDst; /* Store the updated state variables back into the pState array */ *pState++ = Xn1; *pState++ = Xn2; *pState++ = Yn1; *pState++ = Yn2; } while(--stage); #else /* Run the below code for Cortex-M0 */ do { /* Reading the coefficients */ b0 = *pCoeffs++; b1 = *pCoeffs++; b2 = *pCoeffs++; a1 = *pCoeffs++; a2 = *pCoeffs++; /* Reading the state values */ Xn1 = pState[0]; Xn2 = pState[1]; Yn1 = pState[2]; Yn2 = pState[3]; /* The variables acc holds the output value that is computed: * acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ sample = blockSize; while(sample > 0u) { /* Read the input */ Xn = *pIn++; /* acc = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ /* acc = b0 * x[n] */ acc = (q63_t) b0 *Xn; /* acc += b1 * x[n-1] */ acc += (q63_t) b1 *Xn1; /* acc += b[2] * x[n-2] */ acc += (q63_t) b2 *Xn2; /* acc += a1 * y[n-1] */ acc += (q63_t) a1 *Yn1; /* acc += a2 * y[n-2] */ acc += (q63_t) a2 *Yn2; /* The result is converted to 1.31 */ acc = acc >> shift; /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc */ Xn2 = Xn1; Xn1 = Xn; Yn2 = Yn1; Yn1 = (q31_t) acc; /* Store the output in the destination buffer. */ *pOut++ = (q31_t) acc; /* decrement the loop counter */ sample--; } /* The first stage goes from the input buffer to the output buffer. */ /* Subsequent stages occur in-place in the output buffer */ pIn = pDst; /* Reset to destination pointer */ pOut = pDst; /* Store the updated state variables back into the pState array */ *pState++ = Xn1; *pState++ = Xn2; *pState++ = Yn1; *pState++ = Yn2; } while(--stage); #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of BiquadCascadeDF1 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_q31.c
C
lgpl
11,090
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_conv_q7.c * * Description: Convolution of Q7 sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup Conv * @{ */ /** * @brief Convolution of Q7 sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. Length srcALen+srcBLen-1. * @return none. * * @details * <b>Scaling and Overflow Behavior:</b> * * \par * The function is implemented using a 32-bit internal accumulator. * Both the inputs are represented in 1.7 format and multiplications yield a 2.14 result. * The 2.14 intermediate results are accumulated in a 32-bit accumulator in 18.14 format. * This approach provides 17 guard bits and there is no risk of overflow as long as <code>max(srcALen, srcBLen)<131072</code>. * The 18.14 result is then truncated to 18.7 format by discarding the low 7 bits and then saturated to 1.7 format. */ void arm_conv_q7( q7_t * pSrcA, uint32_t srcALen, q7_t * pSrcB, uint32_t srcBLen, q7_t * pDst) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q7_t *pIn1; /* inputA pointer */ q7_t *pIn2; /* inputB pointer */ q7_t *pOut = pDst; /* output pointer */ q7_t *px; /* Intermediate inputA pointer */ q7_t *py; /* Intermediate inputB pointer */ q7_t *pSrc1, *pSrc2; /* Intermediate pointers */ q7_t x0, x1, x2, x3, c0, c1; /* Temporary variables to hold state and coefficient values */ q31_t sum, acc0, acc1, acc2, acc3; /* Accumulator */ q31_t input1, input2; /* Temporary input variables */ q15_t in1, in2; /* Temporary input variables */ uint32_t j, k, count, blkCnt, blockSize1, blockSize2, blockSize3; /* loop counter */ /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = pSrcA; /* Initialization of inputB pointer */ pIn2 = pSrcB; } else { /* Initialization of inputA pointer */ pIn1 = pSrcB; /* Initialization of inputB pointer */ pIn2 = pSrcA; /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; } /* conv(x,y) at n = x[n] * y[0] + x[n-1] * y[1] + x[n-2] * y[2] + ...+ x[n-N+1] * y[N -1] */ /* The function is internally * divided into three stages according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first stage of the * algorithm, the multiplications increase by one for every iteration. * In the second stage of the algorithm, srcBLen number of multiplications are done. * In the third stage of the algorithm, the multiplications decrease by one * for every iteration. */ /* The algorithm is implemented in three stages. The loop counters of each stage is initiated here. */ blockSize1 = srcBLen - 1u; blockSize2 = (srcALen - srcBLen) + 1u; blockSize3 = blockSize1; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[0] * sum = x[0] * y[1] + x[1] * y[0] * .... * sum = x[0] * y[srcBlen - 1] + x[1] * y[srcBlen - 2] +...+ x[srcBLen - 1] * y[0] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = 1u; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ py = pIn2; /* ------------------------ * Stage1 process * ----------------------*/ /* The first stage starts here */ while(blockSize1 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] , x[1] */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* y[srcBLen - 1] , y[srcBLen - 2] */ in1 = (q15_t) * py--; in2 = (q15_t) * py--; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* x[0] * y[srcBLen - 1] */ /* x[1] * y[srcBLen - 2] */ sum = __SMLAD(input1, input2, sum); /* x[2] , x[3] */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* y[srcBLen - 3] , y[srcBLen - 4] */ in1 = (q15_t) * py--; in2 = (q15_t) * py--; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* x[2] * y[srcBLen - 3] */ /* x[3] * y[srcBLen - 4] */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q15_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q7_t) (__SSAT(sum >> 7u, 8)); /* Update the inputA and inputB pointers for next MAC calculation */ py = pIn2 + count; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[srcBLen-1] + x[1] * y[srcBLen-2] +...+ x[srcBLen-1] * y[0] * sum = x[1] * y[srcBLen-1] + x[2] * y[srcBLen-2] +...+ x[srcBLen] * y[0] * .... * sum = x[srcALen-srcBLen-2] * y[srcBLen-1] + x[srcALen] * y[srcBLen-2] +...+ x[srcALen-1] * y[0] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* count is index by which the pointer pIn1 to be incremented */ count = 1u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = blockSize2 >> 2u; while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* read x[0], x[1], x[2] samples */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read y[srcBLen - 1] sample */ c0 = *(py--); /* Read y[srcBLen - 2] sample */ c1 = *(py--); /* Read x[3] sample */ x3 = *(px++); /* x[0] and x[1] are packed */ in1 = (q15_t) x0; in2 = (q15_t) x1; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* y[srcBLen - 1] and y[srcBLen - 2] are packed */ in1 = (q15_t) c0; in2 = (q15_t) c1; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc0 += x[0] * y[srcBLen - 1] + x[1] * y[srcBLen - 2] */ acc0 = __SMLAD(input1, input2, acc0); /* x[1] and x[2] are packed */ in1 = (q15_t) x1; in2 = (q15_t) x2; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc1 += x[1] * y[srcBLen - 1] + x[2] * y[srcBLen - 2] */ acc1 = __SMLAD(input1, input2, acc1); /* x[2] and x[3] are packed */ in1 = (q15_t) x2; in2 = (q15_t) x3; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc2 += x[2] * y[srcBLen - 1] + x[3] * y[srcBLen - 2] */ acc2 = __SMLAD(input1, input2, acc2); /* Read x[4] sample */ x0 = *(px++); /* x[3] and x[4] are packed */ in1 = (q15_t) x3; in2 = (q15_t) x0; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc3 += x[3] * y[srcBLen - 1] + x[4] * y[srcBLen - 2] */ acc3 = __SMLAD(input1, input2, acc3); /* Read y[srcBLen - 3] sample */ c0 = *(py--); /* Read y[srcBLen - 4] sample */ c1 = *(py--); /* Read x[5] sample */ x1 = *(px++); /* x[2] and x[3] are packed */ in1 = (q15_t) x2; in2 = (q15_t) x3; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* y[srcBLen - 3] and y[srcBLen - 4] are packed */ in1 = (q15_t) c0; in2 = (q15_t) c1; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc0 += x[2] * y[srcBLen - 3] + x[3] * y[srcBLen - 4] */ acc0 = __SMLAD(input1, input2, acc0); /* x[3] and x[4] are packed */ in1 = (q15_t) x3; in2 = (q15_t) x0; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc1 += x[3] * y[srcBLen - 3] + x[4] * y[srcBLen - 4] */ acc1 = __SMLAD(input1, input2, acc1); /* x[4] and x[5] are packed */ in1 = (q15_t) x0; in2 = (q15_t) x1; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc2 += x[4] * y[srcBLen - 3] + x[5] * y[srcBLen - 4] */ acc2 = __SMLAD(input1, input2, acc2); /* Read x[6] sample */ x2 = *(px++); /* x[5] and x[6] are packed */ in1 = (q15_t) x1; in2 = (q15_t) x2; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* acc3 += x[5] * y[srcBLen - 3] + x[6] * y[srcBLen - 4] */ acc3 = __SMLAD(input1, input2, acc3); } while(--k); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Read y[srcBLen - 5] sample */ c0 = *(py--); /* Read x[7] sample */ x3 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[4] * y[srcBLen - 5] */ acc0 += ((q15_t) x0 * c0); /* acc1 += x[5] * y[srcBLen - 5] */ acc1 += ((q15_t) x1 * c0); /* acc2 += x[6] * y[srcBLen - 5] */ acc2 += ((q15_t) x2 * c0); /* acc3 += x[7] * y[srcBLen - 5] */ acc3 += ((q15_t) x3 * c0); /* Reuse the present samples for the next MAC */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q7_t) (__SSAT(acc0 >> 7u, 8)); *pOut++ = (q7_t) (__SSAT(acc1 >> 7u, 8)); *pOut++ = (q7_t) (__SSAT(acc2 >> 7u, 8)); *pOut++ = (q7_t) (__SSAT(acc3 >> 7u, 8)); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pSrc2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Reading two inputs of SrcA buffer and packing */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* Reading two inputs of SrcB buffer and packing */ in1 = (q15_t) * py--; in2 = (q15_t) * py--; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* Perform the multiply-accumulates */ sum = __SMLAD(input1, input2, sum); /* Reading two inputs of SrcA buffer and packing */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* Reading two inputs of SrcB buffer and packing */ in1 = (q15_t) * py--; in2 = (q15_t) * py--; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* Perform the multiply-accumulates */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q15_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q7_t) (__SSAT(sum >> 7u, 8)); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* srcBLen number of MACS should be performed */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += ((q15_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q7_t) (__SSAT(sum >> 7u, 8)); /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[srcBLen-1] + x[srcALen-srcBLen+2] * y[srcBLen-2] +...+ x[srcALen-1] * y[1] * sum += x[srcALen-srcBLen+2] * y[srcBLen-1] + x[srcALen-srcBLen+3] * y[srcBLen-2] +...+ x[srcALen-1] * y[2] * .... * sum += x[srcALen-2] * y[srcBLen-1] + x[srcALen-1] * y[srcBLen-2] * sum += x[srcALen-1] * y[srcBLen-1] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The blockSize3 variable holds the number of MAC operations performed */ /* Working pointer of inputA */ pSrc1 = pIn1 + (srcALen - (srcBLen - 1u)); px = pSrc1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* ------------------- * Stage3 process * ------------------*/ while(blockSize3 > 0u) { /* Accumulator is made zero for every iteration */ sum = 0; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = blockSize3 >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Reading two inputs, x[srcALen - srcBLen + 1] and x[srcALen - srcBLen + 2] of SrcA buffer and packing */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* Reading two inputs, y[srcBLen - 1] and y[srcBLen - 2] of SrcB buffer and packing */ in1 = (q15_t) * py--; in2 = (q15_t) * py--; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* sum += x[srcALen - srcBLen + 1] * y[srcBLen - 1] */ /* sum += x[srcALen - srcBLen + 2] * y[srcBLen - 2] */ sum = __SMLAD(input1, input2, sum); /* Reading two inputs, x[srcALen - srcBLen + 3] and x[srcALen - srcBLen + 4] of SrcA buffer and packing */ in1 = (q15_t) * px++; in2 = (q15_t) * px++; input1 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* Reading two inputs, y[srcBLen - 3] and y[srcBLen - 4] of SrcB buffer and packing */ in1 = (q15_t) * py--; in2 = (q15_t) * py--; input2 = ((q31_t) in1 & 0x0000FFFF) | ((q31_t) in2 << 16u); /* sum += x[srcALen - srcBLen + 3] * y[srcBLen - 3] */ /* sum += x[srcALen - srcBLen + 4] * y[srcBLen - 4] */ sum = __SMLAD(input1, input2, sum); /* Decrement the loop counter */ k--; } /* If the blockSize3 is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = blockSize3 % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += ((q15_t) * px++ * *py--); /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = (q7_t) (__SSAT(sum >> 7u, 8)); /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pSrc2; /* Decrement the loop counter */ blockSize3--; } #else /* Run the below code for Cortex-M0 */ q7_t *pIn1 = pSrcA; /* input pointer */ q7_t *pIn2 = pSrcB; /* coefficient pointer */ q31_t sum; /* Accumulator */ uint32_t i, j; /* loop counter */ /* Loop to calculate output of convolution for output length number of times */ for (i = 0; i < (srcALen + srcBLen - 1); i++) { /* Initialize sum with zero to carry on MAC operations */ sum = 0; /* Loop to perform MAC operations according to convolution equation */ for (j = 0; j <= i; j++) { /* Check the array limitations */ if(((i - j) < srcBLen) && (j < srcALen)) { /* z[i] += x[i-j] * y[j] */ sum += (q15_t) pIn1[j] * (pIn2[i - j]); } } /* Store the output in the destination buffer */ pDst[i] = (q7_t) __SSAT((sum >> 7u), 8u); } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of Conv group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_q7.c
C
lgpl
21,113
/* ---------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_conv_partial_f32.c * * Description: Partial convolution of floating-point sequences. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * * -------------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @defgroup PartialConv Partial Convolution * * Partial Convolution is equivalent to Convolution except that a subset of the output samples is generated. * Each function has two additional arguments. * <code>firstIndex</code> specifies the starting index of the subset of output samples. * <code>numPoints</code> is the number of output samples to compute. * The function computes the output in the range * <code>[firstIndex, ..., firstIndex+numPoints-1]</code>. * The output array <code>pDst</code> contains <code>numPoints</code> values. * * The allowable range of output indices is [0 srcALen+srcBLen-2]. * If the requested subset does not fall in this range then the functions return ARM_MATH_ARGUMENT_ERROR. * Otherwise the functions return ARM_MATH_SUCCESS. * \note Refer arm_conv_f32() for details on fixed point behavior. */ /** * @addtogroup PartialConv * @{ */ /** * @brief Partial convolution of floating-point sequences. * @param[in] *pSrcA points to the first input sequence. * @param[in] srcALen length of the first input sequence. * @param[in] *pSrcB points to the second input sequence. * @param[in] srcBLen length of the second input sequence. * @param[out] *pDst points to the location where the output result is written. * @param[in] firstIndex is the first output sample to start with. * @param[in] numPoints is the number of output points to be computed. * @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2]. */ arm_status arm_conv_partial_f32( float32_t * pSrcA, uint32_t srcALen, float32_t * pSrcB, uint32_t srcBLen, float32_t * pDst, uint32_t firstIndex, uint32_t numPoints) { #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ float32_t *pIn1 = pSrcA; /* inputA pointer */ float32_t *pIn2 = pSrcB; /* inputB pointer */ float32_t *pOut = pDst; /* output pointer */ float32_t *px; /* Intermediate inputA pointer */ float32_t *py; /* Intermediate inputB pointer */ float32_t *pSrc1, *pSrc2; /* Intermediate pointers */ float32_t sum, acc0, acc1, acc2, acc3; /* Accumulator */ float32_t x0, x1, x2, x3, c0; /* Temporary variables to hold state and coefficient values */ uint32_t j, k, count = 0u, blkCnt, check; int32_t blockSize1, blockSize2, blockSize3; /* loop counters */ arm_status status; /* status of Partial convolution */ /* Check for range of output samples to be calculated */ if((firstIndex + numPoints) > ((srcALen + (srcBLen - 1u)))) { /* Set status as ARM_MATH_ARGUMENT_ERROR */ status = ARM_MATH_ARGUMENT_ERROR; } else { /* The algorithm implementation is based on the lengths of the inputs. */ /* srcB is always made to slide across srcA. */ /* So srcBLen is always considered as shorter or equal to srcALen */ if(srcALen >= srcBLen) { /* Initialization of inputA pointer */ pIn1 = pSrcA; /* Initialization of inputB pointer */ pIn2 = pSrcB; } else { /* Initialization of inputA pointer */ pIn1 = pSrcB; /* Initialization of inputB pointer */ pIn2 = pSrcA; /* srcBLen is always considered as shorter or equal to srcALen */ j = srcBLen; srcBLen = srcALen; srcALen = j; } /* Conditions to check which loopCounter holds * the first and last indices of the output samples to be calculated. */ check = firstIndex + numPoints; blockSize3 = (int32_t) check - (int32_t) srcALen; blockSize3 = (blockSize3 > 0) ? blockSize3 : 0; blockSize1 = ((int32_t) srcBLen - 1) - (int32_t) firstIndex; blockSize1 = (blockSize1 > 0) ? ((check > (srcBLen - 1u)) ? blockSize1 : (int32_t) numPoints) : 0; blockSize2 = ((int32_t) check - blockSize3) - (blockSize1 + (int32_t) firstIndex); blockSize2 = (blockSize2 > 0) ? blockSize2 : 0; /* conv(x,y) at n = x[n] * y[0] + x[n-1] * y[1] + x[n-2] * y[2] + ...+ x[n-N+1] * y[N -1] */ /* The function is internally * divided into three stages according to the number of multiplications that has to be * taken place between inputA samples and inputB samples. In the first stage of the * algorithm, the multiplications increase by one for every iteration. * In the second stage of the algorithm, srcBLen number of multiplications are done. * In the third stage of the algorithm, the multiplications decrease by one * for every iteration. */ /* Set the output pointer to point to the firstIndex * of the output sample to be calculated. */ pOut = pDst + firstIndex; /* -------------------------- * Initializations of stage1 * -------------------------*/ /* sum = x[0] * y[0] * sum = x[0] * y[1] + x[1] * y[0] * .... * sum = x[0] * y[srcBlen - 1] + x[1] * y[srcBlen - 2] +...+ x[srcBLen - 1] * y[0] */ /* In this stage the MAC operations are increased by 1 for every iteration. The count variable holds the number of MAC operations performed. Since the partial convolution starts from from firstIndex Number of Macs to be performed is firstIndex + 1 */ count = 1u + firstIndex; /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc1 = pIn2 + firstIndex; py = pSrc1; /* ------------------------ * Stage1 process * ----------------------*/ /* The first stage starts here */ while(blockSize1 > 0) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* x[0] * y[srcBLen - 1] */ sum += *px++ * *py--; /* x[1] * y[srcBLen - 2] */ sum += *px++ * *py--; /* x[2] * y[srcBLen - 3] */ sum += *px++ * *py--; /* x[3] * y[srcBLen - 4] */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ py = ++pSrc1; px = pIn1; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blockSize1--; } /* -------------------------- * Initializations of stage2 * ------------------------*/ /* sum = x[0] * y[srcBLen-1] + x[1] * y[srcBLen-2] +...+ x[srcBLen-1] * y[0] * sum = x[1] * y[srcBLen-1] + x[2] * y[srcBLen-2] +...+ x[srcBLen] * y[0] * .... * sum = x[srcALen-srcBLen-2] * y[srcBLen-1] + x[srcALen] * y[srcBLen-2] +...+ x[srcALen-1] * y[0] */ /* Working pointer of inputA */ px = pIn1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; /* count is index by which the pointer pIn1 to be incremented */ count = 1u; /* ------------------- * Stage2 process * ------------------*/ /* Stage2 depends on srcBLen as in this stage srcBLen number of MACS are performed. * So, to loop unroll over blockSize2, * srcBLen should be greater than or equal to 4 */ if(srcBLen >= 4u) { /* Loop unroll over blockSize2, by 4 */ blkCnt = ((uint32_t) blockSize2 >> 2u); while(blkCnt > 0u) { /* Set all accumulators to zero */ acc0 = 0.0f; acc1 = 0.0f; acc2 = 0.0f; acc3 = 0.0f; /* read x[0], x[1], x[2] samples */ x0 = *(px++); x1 = *(px++); x2 = *(px++); /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ do { /* Read y[srcBLen - 1] sample */ c0 = *(py--); /* Read x[3] sample */ x3 = *(px++); /* Perform the multiply-accumulate */ /* acc0 += x[0] * y[srcBLen - 1] */ acc0 += x0 * c0; /* acc1 += x[1] * y[srcBLen - 1] */ acc1 += x1 * c0; /* acc2 += x[2] * y[srcBLen - 1] */ acc2 += x2 * c0; /* acc3 += x[3] * y[srcBLen - 1] */ acc3 += x3 * c0; /* Read y[srcBLen - 2] sample */ c0 = *(py--); /* Read x[4] sample */ x0 = *(px++); /* Perform the multiply-accumulate */ /* acc0 += x[1] * y[srcBLen - 2] */ acc0 += x1 * c0; /* acc1 += x[2] * y[srcBLen - 2] */ acc1 += x2 * c0; /* acc2 += x[3] * y[srcBLen - 2] */ acc2 += x3 * c0; /* acc3 += x[4] * y[srcBLen - 2] */ acc3 += x0 * c0; /* Read y[srcBLen - 3] sample */ c0 = *(py--); /* Read x[5] sample */ x1 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[2] * y[srcBLen - 3] */ acc0 += x2 * c0; /* acc1 += x[3] * y[srcBLen - 2] */ acc1 += x3 * c0; /* acc2 += x[4] * y[srcBLen - 2] */ acc2 += x0 * c0; /* acc3 += x[5] * y[srcBLen - 2] */ acc3 += x1 * c0; /* Read y[srcBLen - 4] sample */ c0 = *(py--); /* Read x[6] sample */ x2 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[3] * y[srcBLen - 4] */ acc0 += x3 * c0; /* acc1 += x[4] * y[srcBLen - 4] */ acc1 += x0 * c0; /* acc2 += x[5] * y[srcBLen - 4] */ acc2 += x1 * c0; /* acc3 += x[6] * y[srcBLen - 4] */ acc3 += x2 * c0; } while(--k); /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Read y[srcBLen - 5] sample */ c0 = *(py--); /* Read x[7] sample */ x3 = *(px++); /* Perform the multiply-accumulates */ /* acc0 += x[4] * y[srcBLen - 5] */ acc0 += x0 * c0; /* acc1 += x[5] * y[srcBLen - 5] */ acc1 += x1 * c0; /* acc2 += x[6] * y[srcBLen - 5] */ acc2 += x2 * c0; /* acc3 += x[7] * y[srcBLen - 5] */ acc3 += x3 * c0; /* Reuse the present samples for the next MAC */ x0 = x1; x1 = x2; x2 = x3; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = acc0; *pOut++ = acc1; *pOut++ = acc2; *pOut++ = acc3; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + (count * 4u); py = pSrc2; /* Increment the pointer pIn1 index, count by 1 */ count++; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize2 is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = (uint32_t) blockSize2 % 0x4u; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = srcBLen >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* Perform the multiply-accumulates */ sum += *px++ * *py--; sum += *px++ * *py--; sum += *px++ * *py--; sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* If the srcBLen is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = srcBLen % 0x4u; while(k > 0u) { /* Perform the multiply-accumulate */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } else { /* If the srcBLen is not a multiple of 4, * the blockSize2 loop cannot be unrolled by 4 */ blkCnt = (uint32_t) blockSize2; while(blkCnt > 0u) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* srcBLen number of MACS should be performed */ k = srcBLen; while(k > 0u) { /* Perform the multiply-accumulate */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ px = pIn1 + count; py = pSrc2; /* Increment the MAC count */ count++; /* Decrement the loop counter */ blkCnt--; } } /* -------------------------- * Initializations of stage3 * -------------------------*/ /* sum += x[srcALen-srcBLen+1] * y[srcBLen-1] + x[srcALen-srcBLen+2] * y[srcBLen-2] +...+ x[srcALen-1] * y[1] * sum += x[srcALen-srcBLen+2] * y[srcBLen-1] + x[srcALen-srcBLen+3] * y[srcBLen-2] +...+ x[srcALen-1] * y[2] * .... * sum += x[srcALen-2] * y[srcBLen-1] + x[srcALen-1] * y[srcBLen-2] * sum += x[srcALen-1] * y[srcBLen-1] */ /* In this stage the MAC operations are decreased by 1 for every iteration. The count variable holds the number of MAC operations performed */ count = srcBLen - 1u; /* Working pointer of inputA */ pSrc1 = (pIn1 + srcALen) - (srcBLen - 1u); px = pSrc1; /* Working pointer of inputB */ pSrc2 = pIn2 + (srcBLen - 1u); py = pSrc2; while(blockSize3 > 0) { /* Accumulator is made zero for every iteration */ sum = 0.0f; /* Apply loop unrolling and compute 4 MACs simultaneously. */ k = count >> 2u; /* First part of the processing with loop unrolling. Compute 4 MACs at a time. ** a second loop below computes MACs for the remaining 1 to 3 samples. */ while(k > 0u) { /* sum += x[srcALen - srcBLen + 1] * y[srcBLen - 1] */ sum += *px++ * *py--; /* sum += x[srcALen - srcBLen + 2] * y[srcBLen - 2] */ sum += *px++ * *py--; /* sum += x[srcALen - srcBLen + 3] * y[srcBLen - 3] */ sum += *px++ * *py--; /* sum += x[srcALen - srcBLen + 4] * y[srcBLen - 4] */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* If the count is not a multiple of 4, compute any remaining MACs here. ** No loop unrolling is used. */ k = count % 0x4u; while(k > 0u) { /* Perform the multiply-accumulates */ /* sum += x[srcALen-1] * y[srcBLen-1] */ sum += *px++ * *py--; /* Decrement the loop counter */ k--; } /* Store the result in the accumulator in the destination buffer. */ *pOut++ = sum; /* Update the inputA and inputB pointers for next MAC calculation */ px = ++pSrc1; py = pSrc2; /* Decrement the MAC count */ count--; /* Decrement the loop counter */ blockSize3--; } /* set status as ARM_MATH_SUCCESS */ status = ARM_MATH_SUCCESS; } /* Return to application */ return (status); #else /* Run the below code for Cortex-M0 */ float32_t *pIn1 = pSrcA; /* inputA pointer */ float32_t *pIn2 = pSrcB; /* inputB pointer */ float32_t sum; /* Accumulator */ uint32_t i, j; /* loop counters */ arm_status status; /* status of Partial convolution */ /* Check for range of output samples to be calculated */ if((firstIndex + numPoints) > ((srcALen + (srcBLen - 1u)))) { /* Set status as ARM_ARGUMENT_ERROR */ status = ARM_MATH_ARGUMENT_ERROR; } else { /* Loop to calculate convolution for output length number of values */ for (i = firstIndex; i <= (firstIndex + numPoints - 1); i++) { /* Initialize sum with zero to carry on MAC operations */ sum = 0.0f; /* Loop to perform MAC operations according to convolution equation */ for (j = 0u; j <= i; j++) { /* Check the array limitations for inputs */ if((((i - j) < srcBLen) && (j < srcALen))) { /* z[i] += x[i-j] * y[j] */ sum += pIn1[j] * pIn2[i - j]; } } /* Store the output in the destination buffer */ pDst[i] = sum; } /* set status as ARM_SUCCESS as there are no argument errors */ status = ARM_MATH_SUCCESS; } return (status); #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of PartialConv group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_conv_partial_f32.c
C
lgpl
20,270
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_fast_q15.c * * Description: Q15 Fast FIR filter processing function. * * Target Processor: Cortex-M4/Cortex-M3 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.9 2010/08/16 * Initial version * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR * @{ */ /** * @param[in] *S points to an instance of the Q15 FIR filter structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * This fast version uses a 32-bit accumulator with 2.30 format. * The accumulator maintains full precision of the intermediate multiplication results but provides only a single guard bit. * Thus, if the accumulator result overflows it wraps around and distorts the result. * In order to avoid overflows completely the input signal must be scaled down by log2(numTaps) bits. * The 2.30 accumulator is then truncated to 2.15 format and saturated to yield the 1.15 result. * * \par * Refer to the function <code>arm_fir_q15()</code> for a slower implementation of this function which uses 64-bit accumulation to avoid wrap around distortion. Both the slow and the fast versions use the same instance structure. * Use the function <code>arm_fir_init_q15()</code> to initialize the filter structure. */ void arm_fir_fast_q15( const arm_fir_instance_q15 * S, q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ q15_t *px1; /* Temporary q15 pointer for state buffer */ q31_t *pb; /* Temporary pointer for coefficient buffer */ q31_t *px2; /* Temporary q31 pointer for SIMD state buffer accesses */ q31_t x0, x1, x2, x3, c0; /* Temporary variables to hold SIMD state and coefficient values */ q31_t acc0, acc1, acc2, acc3; /* Accumulators */ uint32_t numTaps = S->numTaps; /* Number of taps in the filter */ uint32_t tapCnt, blkCnt; /* Loop counters */ /* S->pState points to buffer which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Apply loop unrolling and compute 4 output values simultaneously. * The variables acc0 ... acc3 hold output values that are being computed: * * acc0 = b[numTaps-1] * x[n-numTaps-1] + b[numTaps-2] * x[n-numTaps-2] + b[numTaps-3] * x[n-numTaps-3] +...+ b[0] * x[0] * acc1 = b[numTaps-1] * x[n-numTaps] + b[numTaps-2] * x[n-numTaps-1] + b[numTaps-3] * x[n-numTaps-2] +...+ b[0] * x[1] * acc2 = b[numTaps-1] * x[n-numTaps+1] + b[numTaps-2] * x[n-numTaps] + b[numTaps-3] * x[n-numTaps-1] +...+ b[0] * x[2] * acc3 = b[numTaps-1] * x[n-numTaps+2] + b[numTaps-2] * x[n-numTaps+1] + b[numTaps-3] * x[n-numTaps] +...+ b[0] * x[3] */ blkCnt = blockSize >> 2; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Copy four new input samples into the state buffer. ** Use 32-bit SIMD to move the 16-bit data. Only requires two copies. */ *__SIMD32(pStateCurnt)++ = *__SIMD32(pSrc)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pSrc)++; /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* Initialize state pointer of type q15 */ px1 = pState; /* Initialize coeff pointer of type q31 */ pb = (q31_t *) (pCoeffs); /* Read the first two samples from the state buffer: x[n-N], x[n-N-1] */ x0 = *(q31_t *) (px1++); /* Read the third and forth samples from the state buffer: x[n-N-1], x[n-N-2] */ x1 = *(q31_t *) (px1++); /* Loop over the number of taps. Unroll by a factor of 4. ** Repeat until we've computed numTaps-4 coefficients. */ tapCnt = numTaps >> 2; do { /* Read the first two coefficients using SIMD: b[N] and b[N-1] coefficients */ c0 = *(pb++); /* acc0 += b[N] * x[n-N] + b[N-1] * x[n-N-1] */ acc0 = __SMLAD(x0, c0, acc0); /* acc1 += b[N] * x[n-N-1] + b[N-1] * x[n-N-2] */ acc1 = __SMLAD(x1, c0, acc1); /* Read state x[n-N-2], x[n-N-3] */ x2 = *(q31_t *) (px1++); /* Read state x[n-N-3], x[n-N-4] */ x3 = *(q31_t *) (px1++); /* acc2 += b[N] * x[n-N-2] + b[N-1] * x[n-N-3] */ acc2 = __SMLAD(x2, c0, acc2); /* acc3 += b[N] * x[n-N-3] + b[N-1] * x[n-N-4] */ acc3 = __SMLAD(x3, c0, acc3); /* Read coefficients b[N-2], b[N-3] */ c0 = *(pb++); /* acc0 += b[N-2] * x[n-N-2] + b[N-3] * x[n-N-3] */ acc0 = __SMLAD(x2, c0, acc0); /* acc1 += b[N-2] * x[n-N-3] + b[N-3] * x[n-N-4] */ acc1 = __SMLAD(x3, c0, acc1); /* Read state x[n-N-4], x[n-N-5] */ x0 = *(q31_t *) (px1++); /* Read state x[n-N-5], x[n-N-6] */ x1 = *(q31_t *) (px1++); /* acc2 += b[N-2] * x[n-N-4] + b[N-3] * x[n-N-5] */ acc2 = __SMLAD(x0, c0, acc2); /* acc3 += b[N-2] * x[n-N-5] + b[N-3] * x[n-N-6] */ acc3 = __SMLAD(x1, c0, acc3); tapCnt--; } while(tapCnt > 0u); /* If the filter length is not a multiple of 4, compute the remaining filter taps. ** This is always 2 taps since the filter length is always even. */ if((numTaps & 0x3u) != 0u) { /* Read 2 coefficients */ c0 = *(pb++); /* Fetch 4 state variables */ x2 = *(q31_t *) (px1++); x3 = *(q31_t *) (px1++); /* Perform the multiply-accumulates */ acc0 = __SMLAD(x0, c0, acc0); acc1 = __SMLAD(x1, c0, acc1); acc2 = __SMLAD(x2, c0, acc2); acc3 = __SMLAD(x3, c0, acc3); } /* The results in the 4 accumulators are in 2.30 format. Convert to 1.15 with saturation. ** Then store the 4 outputs in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT((acc0 >> 15), (acc1 >> 15), 16u); *__SIMD32(pDst)++ = __PKHBT((acc2 >> 15), (acc3 >> 15), 16u); #else *__SIMD32(pDst)++ = __PKHBT((acc1 >> 15), (acc0 >> 15), 16u); *__SIMD32(pDst)++ = __PKHBT((acc3 >> 15), (acc2 >> 15), 16u); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Advance the state pointer by 4 to process the next group of 4 samples */ pState = pState + 4; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* Copy two samples into state buffer */ *pStateCurnt++ = *pSrc++; /* Set the accumulator to zero */ acc0 = 0; /* Use SIMD to hold states and coefficients */ px2 = (q31_t *) pState; pb = (q31_t *) (pCoeffs); tapCnt = numTaps >> 1; do { acc0 = __SMLAD(*px2++, *(pb++), acc0); tapCnt--; } while(tapCnt > 0u); /* The result is in 2.30 format. Convert to 1.15 with saturation. ** Then store the output in the destination buffer. */ *pDst++ = (q15_t) ((acc0 >> 15)); /* Advance state pointer by 1 for the next sample */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; /* Calculation of count for copying integer writes */ tapCnt = (numTaps - 1u) >> 2; while(tapCnt > 0u) { *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; tapCnt--; } /* Calculation of count for remaining q15_t data */ tapCnt = (numTaps - 1u) % 0x4u; /* copy remaining data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } } /** * @} end of FIR group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_fast_q15.c
C
lgpl
9,671
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_q15.c * * Description: Q15 FIR filter processing function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR * @{ */ /** * @brief Processing function for the Q15 FIR filter. * @param[in] *S points to an instance of the Q15 FIR structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using a 64-bit internal accumulator. * Both coefficients and state variables are represented in 1.15 format and multiplications yield a 2.30 result. * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. * After all additions have been performed, the accumulator is truncated to 34.15 format by discarding low 15 bits. * Lastly, the accumulator is saturated to yield a result in 1.15 format. * * \par * Refer to the function <code>arm_fir_fast_q15()</code> for a faster but less precise implementation of this function for Cortex-M3 and Cortex-M4. */ void arm_fir_q15( const arm_fir_instance_q15 * S, q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q15_t *px1; /* Temporary q15 pointer for state buffer */ q31_t *pb; /* Temporary pointer for coefficient buffer */ q31_t *px2; /* Temporary q31 pointer for SIMD state buffer accesses */ q31_t x0, x1, x2, x3, c0; /* Temporary variables to hold SIMD state and coefficient values */ q63_t acc0, acc1, acc2, acc3; /* Accumulators */ uint32_t numTaps = S->numTaps; /* Number of taps in the filter */ uint32_t tapCnt, blkCnt; /* Loop counters */ /* S->pState points to state array which contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Apply loop unrolling and compute 4 output values simultaneously. * The variables acc0 ... acc3 hold output values that are being computed: * * acc0 = b[numTaps-1] * x[n-numTaps-1] + b[numTaps-2] * x[n-numTaps-2] + b[numTaps-3] * x[n-numTaps-3] +...+ b[0] * x[0] * acc1 = b[numTaps-1] * x[n-numTaps] + b[numTaps-2] * x[n-numTaps-1] + b[numTaps-3] * x[n-numTaps-2] +...+ b[0] * x[1] * acc2 = b[numTaps-1] * x[n-numTaps+1] + b[numTaps-2] * x[n-numTaps] + b[numTaps-3] * x[n-numTaps-1] +...+ b[0] * x[2] * acc3 = b[numTaps-1] * x[n-numTaps+2] + b[numTaps-2] * x[n-numTaps+1] + b[numTaps-3] * x[n-numTaps] +...+ b[0] * x[3] */ blkCnt = blockSize >> 2; /* First part of the processing with loop unrolling. Compute 4 outputs at a time. ** a second loop below computes the remaining 1 to 3 samples. */ while(blkCnt > 0u) { /* Copy four new input samples into the state buffer. ** Use 32-bit SIMD to move the 16-bit data. Only requires two copies. */ *__SIMD32(pStateCurnt)++ = *__SIMD32(pSrc)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pSrc)++; /* Set all accumulators to zero */ acc0 = 0; acc1 = 0; acc2 = 0; acc3 = 0; /* Initialize state pointer of type q15 */ px1 = pState; /* Initialize coeff pointer of type q31 */ pb = (q31_t *) (pCoeffs); /* Read the first two samples from the state buffer: x[n-N], x[n-N-1] */ x0 = *(q31_t *) (px1++); /* Read the third and forth samples from the state buffer: x[n-N-1], x[n-N-2] */ x1 = *(q31_t *) (px1++); /* Loop over the number of taps. Unroll by a factor of 4. ** Repeat until we've computed numTaps-4 coefficients. */ tapCnt = numTaps >> 2; do { /* Read the first two coefficients using SIMD: b[N] and b[N-1] coefficients */ c0 = *(pb++); /* acc0 += b[N] * x[n-N] + b[N-1] * x[n-N-1] */ acc0 = __SMLALD(x0, c0, acc0); /* acc1 += b[N] * x[n-N-1] + b[N-1] * x[n-N-2] */ acc1 = __SMLALD(x1, c0, acc1); /* Read state x[n-N-2], x[n-N-3] */ x2 = *(q31_t *) (px1++); /* Read state x[n-N-3], x[n-N-4] */ x3 = *(q31_t *) (px1++); /* acc2 += b[N] * x[n-N-2] + b[N-1] * x[n-N-3] */ acc2 = __SMLALD(x2, c0, acc2); /* acc3 += b[N] * x[n-N-3] + b[N-1] * x[n-N-4] */ acc3 = __SMLALD(x3, c0, acc3); /* Read coefficients b[N-2], b[N-3] */ c0 = *(pb++); /* acc0 += b[N-2] * x[n-N-2] + b[N-3] * x[n-N-3] */ acc0 = __SMLALD(x2, c0, acc0); /* acc1 += b[N-2] * x[n-N-3] + b[N-3] * x[n-N-4] */ acc1 = __SMLALD(x3, c0, acc1); /* Read state x[n-N-4], x[n-N-5] */ x0 = *(q31_t *) (px1++); /* Read state x[n-N-5], x[n-N-6] */ x1 = *(q31_t *) (px1++); /* acc2 += b[N-2] * x[n-N-4] + b[N-3] * x[n-N-5] */ acc2 = __SMLALD(x0, c0, acc2); /* acc3 += b[N-2] * x[n-N-5] + b[N-3] * x[n-N-6] */ acc3 = __SMLALD(x1, c0, acc3); tapCnt--; } while(tapCnt > 0u); /* If the filter length is not a multiple of 4, compute the remaining filter taps. ** This is always be 2 taps since the filter length is even. */ if((numTaps & 0x3u) != 0u) { /* Read 2 coefficients */ c0 = *(pb++); /* Fetch 4 state variables */ x2 = *(q31_t *) (px1++); x3 = *(q31_t *) (px1++); /* Perform the multiply-accumulates */ acc0 = __SMLALD(x0, c0, acc0); acc1 = __SMLALD(x1, c0, acc1); acc2 = __SMLALD(x2, c0, acc2); acc3 = __SMLALD(x3, c0, acc3); } /* The results in the 4 accumulators are in 2.30 format. Convert to 1.15 with saturation. ** Then store the 4 outputs in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pDst)++ = __PKHBT(__SSAT((acc0 >> 15), 16), __SSAT((acc1 >> 15), 16), 16); *__SIMD32(pDst)++ = __PKHBT(__SSAT((acc2 >> 15), 16), __SSAT((acc3 >> 15), 16), 16); #else *__SIMD32(pDst)++ = __PKHBT(__SSAT((acc1 >> 15), 16), __SSAT((acc0 >> 15), 16), 16); *__SIMD32(pDst)++ = __PKHBT(__SSAT((acc3 >> 15), 16), __SSAT((acc2 >> 15), 16), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Advance the state pointer by 4 to process the next group of 4 samples */ pState = pState + 4; /* Decrement the loop counter */ blkCnt--; } /* If the blockSize is not a multiple of 4, compute any remaining output samples here. ** No loop unrolling is used. */ blkCnt = blockSize % 0x4u; while(blkCnt > 0u) { /* Copy two samples into state buffer */ *pStateCurnt++ = *pSrc++; /* Set the accumulator to zero */ acc0 = 0; /* Use SIMD to hold states and coefficients */ px2 = (q31_t *) pState; pb = (q31_t *) (pCoeffs); tapCnt = numTaps >> 1; do { acc0 = __SMLALD(*px2++, *(pb++), acc0); tapCnt--; } while(tapCnt > 0u); /* The result is in 2.30 format. Convert to 1.15 with saturation. ** Then store the output in the destination buffer. */ *pDst++ = (q15_t) (__SSAT((acc0 >> 15), 16)); /* Advance state pointer by 1 for the next sample */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; /* Calculation of count for copying integer writes */ tapCnt = (numTaps - 1u) >> 2; while(tapCnt > 0u) { *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; tapCnt--; } /* Calculation of count for remaining q15_t data */ tapCnt = (numTaps - 1u) % 0x4u; /* copy remaining data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #else /* Run the below code for Cortex-M0 */ q15_t *px; /* Temporary pointer for state buffer */ q15_t *pb; /* Temporary pointer for coefficient buffer */ q63_t acc; /* Accumulator */ uint32_t numTaps = S->numTaps; /* Number of nTaps in the filter */ uint32_t tapCnt, blkCnt; /* Loop counters */ /* S->pState buffer contains previous frame (numTaps - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = &(S->pState[(numTaps - 1u)]); /* Initialize blkCnt with blockSize */ blkCnt = blockSize; while(blkCnt > 0u) { /* Copy one sample at a time into state buffer */ *pStateCurnt++ = *pSrc++; /* Set the accumulator to zero */ acc = 0; /* Initialize state pointer */ px = pState; /* Initialize Coefficient pointer */ pb = pCoeffs; tapCnt = numTaps; /* Perform the multiply-accumulates */ do { /* acc = b[numTaps-1] * x[n-numTaps-1] + b[numTaps-2] * x[n-numTaps-2] + b[numTaps-3] * x[n-numTaps-3] +...+ b[0] * x[0] */ acc += (q31_t) * px++ * *pb++; tapCnt--; } while(tapCnt > 0u); /* The result is in 2.30 format. Convert to 1.15 ** Then store the output in the destination buffer. */ *pDst++ = (q15_t) __SSAT((acc >> 15u), 16); /* Advance state pointer by 1 for the next sample */ pState = pState + 1; /* Decrement the samples loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last numTaps - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; /* Copy numTaps number of values */ tapCnt = (numTaps - 1u); /* copy data */ while(tapCnt > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ tapCnt--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_q15.c
C
lgpl
12,188
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_iir_lattice_init_f32.c * * Description: Floating-point IIR lattice filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup IIR_Lattice * @{ */ /** * @brief Initialization function for the floating-point IIR lattice filter. * @param[in] *S points to an instance of the floating-point IIR lattice structure. * @param[in] numStages number of stages in the filter. * @param[in] *pkCoeffs points to the reflection coefficient buffer. The array is of length numStages. * @param[in] *pvCoeffs points to the ladder coefficient buffer. The array is of length numStages+1. * @param[in] *pState points to the state buffer. The array is of length numStages+blockSize. * @param[in] blockSize number of samples to process. * @return none. */ void arm_iir_lattice_init_f32( arm_iir_lattice_instance_f32 * S, uint16_t numStages, float32_t * pkCoeffs, float32_t * pvCoeffs, float32_t * pState, uint32_t blockSize) { /* Assign filter taps */ S->numStages = numStages; /* Assign reflection coefficient pointer */ S->pkCoeffs = pkCoeffs; /* Assign ladder coefficient pointer */ S->pvCoeffs = pvCoeffs; /* Clear state buffer and size is always blockSize + numStages */ memset(pState, 0, (numStages + blockSize) * sizeof(float32_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of IIR_Lattice group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_iir_lattice_init_f32.c
C
lgpl
2,482
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_interpolate_q15.c * * Description: Q15 FIR interpolation. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR_Interpolate * @{ */ /** * @brief Processing function for the Q15 FIR interpolator. * @param[in] *S points to an instance of the Q15 FIR interpolator structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of input samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * The function is implemented using a 64-bit internal accumulator. * Both coefficients and state variables are represented in 1.15 format and multiplications yield a 2.30 result. * The 2.30 intermediate results are accumulated in a 64-bit accumulator in 34.30 format. * There is no risk of internal overflow with this approach and the full precision of intermediate multiplications is preserved. * After all additions have been performed, the accumulator is truncated to 34.15 format by discarding low 15 bits. * Lastly, the accumulator is saturated to yield a result in 1.15 format. */ void arm_fir_interpolate_q15( const arm_fir_interpolate_instance_q15 * S, q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q15_t *pStateCurnt; /* Points to the current sample of the state */ q15_t *ptr1, *ptr2; /* Temporary pointers for state and coefficient buffers */ #ifndef ARM_MATH_CM0 /* Run the below code for Cortex-M4 and Cortex-M3 */ q63_t sum0; /* Accumulators */ q15_t x0, c0, c1; /* Temporary variables to hold state and coefficient values */ q31_t c, x; uint32_t i, blkCnt, j, tapCnt; /* Loop counters */ uint16_t phaseLen = S->phaseLength; /* Length of each polyphase filter component */ /* S->pState buffer contains previous frame (phaseLen - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (phaseLen - 1u); /* Total number of intput samples */ blkCnt = blockSize; /* Loop over the blockSize. */ while(blkCnt > 0u) { /* Copy new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Address modifier index of coefficient buffer */ j = 1u; /* Loop over the Interpolation factor. */ i = S->L; while(i > 0u) { /* Set accumulator to zero */ sum0 = 0; /* Initialize state pointer */ ptr1 = pState; /* Initialize coefficient pointer */ ptr2 = pCoeffs + (S->L - j); /* Loop over the polyPhase length. Unroll by a factor of 4. ** Repeat until we've computed numTaps-(4*S->L) coefficients. */ tapCnt = (uint32_t) phaseLen >> 2u; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *(ptr2); /* Upsampling is done by stuffing L-1 zeros between each sample. * So instead of multiplying zeros with coefficients, * Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the coefficient */ c1 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Pack the coefficients */ #ifndef ARM_MATH_BIG_ENDIAN c = __PKHBT(c0, c1, 16); #else c = __PKHBT(c1, c0, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Read twp consecutive input samples */ x = *__SIMD32(ptr1)++; /* Perform the multiply-accumulate */ sum0 = __SMLALD(x, c, sum0); /* Read the coefficient */ c0 = *(ptr2); /* Upsampling is done by stuffing L-1 zeros between each sample. * So insted of multiplying zeros with coefficients, * Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the coefficient */ c1 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Pack the coefficients */ #ifndef ARM_MATH_BIG_ENDIAN c = __PKHBT(c0, c1, 16); #else c = __PKHBT(c1, c0, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Read twp consecutive input samples */ x = *__SIMD32(ptr1)++; /* Perform the multiply-accumulate */ sum0 = __SMLALD(x, c, sum0); /* Decrement the loop counter */ tapCnt--; } /* If the polyPhase length is not a multiple of 4, compute the remaining filter taps */ tapCnt = (uint32_t) phaseLen & 0x3u; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *(ptr2); /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *(ptr1++); /* Perform the multiply-accumulate */ sum0 = __SMLALD(x0, c0, sum0); /* Decrement the loop counter */ tapCnt--; } /* The result is in the accumulator, store in the destination buffer. */ *pDst++ = (q15_t) (__SSAT((sum0 >> 15), 16)); /* Increment the address modifier index of coefficient buffer */ j++; /* Decrement the loop counter */ i--; } /* Advance the state pointer by 1 * to process the next group of interpolation factor number samples */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last phaseLen - 1 samples to the satrt of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; i = ((uint32_t) phaseLen - 1u) >> 2u; /* copy data */ while(i > 0u) { *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; *__SIMD32(pStateCurnt)++ = *__SIMD32(pState)++; /* Decrement the loop counter */ i--; } i = ((uint32_t) phaseLen - 1u) % 0x04u; while(i > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ i--; } #else /* Run the below code for Cortex-M0 */ q63_t sum; /* Accumulator */ q15_t x0, c0; /* Temporary variables to hold state and coefficient values */ uint32_t i, blkCnt, tapCnt; /* Loop counters */ uint16_t phaseLen = S->phaseLength; /* Length of each polyphase filter component */ /* S->pState buffer contains previous frame (phaseLen - 1) samples */ /* pStateCurnt points to the location where the new input data should be written */ pStateCurnt = S->pState + (phaseLen - 1u); /* Total number of intput samples */ blkCnt = blockSize; /* Loop over the blockSize. */ while(blkCnt > 0u) { /* Copy new input sample into the state buffer */ *pStateCurnt++ = *pSrc++; /* Loop over the Interpolation factor. */ i = S->L; while(i > 0u) { /* Set accumulator to zero */ sum = 0; /* Initialize state pointer */ ptr1 = pState; /* Initialize coefficient pointer */ ptr2 = pCoeffs + (i - 1u); /* Loop over the polyPhase length */ tapCnt = (uint32_t) phaseLen; while(tapCnt > 0u) { /* Read the coefficient */ c0 = *ptr2; /* Increment the coefficient pointer by interpolation factor times. */ ptr2 += S->L; /* Read the input sample */ x0 = *ptr1++; /* Perform the multiply-accumulate */ sum += ((q31_t) x0 * c0); /* Decrement the loop counter */ tapCnt--; } /* Store the result after converting to 1.15 format in the destination buffer */ *pDst++ = (q15_t) (__SSAT((sum >> 15), 16)); /* Decrement the loop counter */ i--; } /* Advance the state pointer by 1 * to process the next group of interpolation factor number samples */ pState = pState + 1; /* Decrement the loop counter */ blkCnt--; } /* Processing is complete. ** Now copy the last phaseLen - 1 samples to the start of the state buffer. ** This prepares the state buffer for the next function call. */ /* Points to the start of the state buffer */ pStateCurnt = S->pState; i = (uint32_t) phaseLen - 1u; while(i > 0u) { *pStateCurnt++ = *pState++; /* Decrement the loop counter */ i--; } #endif /* #ifndef ARM_MATH_CM0 */ } /** * @} end of FIR_Interpolate group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_interpolate_q15.c
C
lgpl
10,451
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_fir_init_q31.c * * Description: Q31 FIR filter initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.5 2010/04/26 * incorporated review comments and updated with latest CMSIS layer * * Version 0.0.3 2010/03/10 * Initial version * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup FIR * @{ */ /** * @details * * @param[in,out] *S points to an instance of the Q31 FIR filter structure. * @param[in] numTaps Number of filter coefficients in the filter. * @param[in] *pCoeffs points to the filter coefficients buffer. * @param[in] *pState points to the state buffer. * @param[in] blockSize number of samples that are processed per call. * @return none. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * \par * <code>pState</code> points to the array of state variables. * <code>pState</code> is of length <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of input samples processed by each call to <code>arm_fir_q31()</code>. */ void arm_fir_init_q31( arm_fir_instance_q31 * S, uint16_t numTaps, q31_t * pCoeffs, q31_t * pState, uint32_t blockSize) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and state array size is (blockSize + numTaps - 1) */ memset(pState, 0, (blockSize + ((uint32_t) numTaps - 1u)) * sizeof(q31_t)); /* Assign state pointer */ S->pState = pState; } /** * @} end of FIR group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_fir_init_q31.c
C
lgpl
2,709
/*----------------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_lms_norm_init_q15.c * * Description: Q15 NLMS initialization function. * * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated * * Version 0.0.7 2010/06/10 * Misra-C changes done * ---------------------------------------------------------------------------*/ #include "arm_math.h" #include "arm_common_tables.h" /** * @addtogroup LMS_NORM * @{ */ /** * @brief Initialization function for Q15 normalized LMS filter. * @param[in] *S points to an instance of the Q15 normalized LMS filter structure. * @param[in] numTaps number of filter coefficients. * @param[in] *pCoeffs points to coefficient buffer. * @param[in] *pState points to state buffer. * @param[in] mu step size that controls filter coefficient updates. * @param[in] blockSize number of samples to process. * @param[in] postShift bit shift applied to coefficients. * @return none. * * <b>Description:</b> * \par * <code>pCoeffs</code> points to the array of filter coefficients stored in time reversed order: * <pre> * {b[numTaps-1], b[numTaps-2], b[N-2], ..., b[1], b[0]} * </pre> * The initial filter coefficients serve as a starting point for the adaptive filter. * <code>pState</code> points to the array of state variables and size of array is * <code>numTaps+blockSize-1</code> samples, where <code>blockSize</code> is the number of input samples processed * by each call to <code>arm_lms_norm_q15()</code>. */ void arm_lms_norm_init_q15( arm_lms_norm_instance_q15 * S, uint16_t numTaps, q15_t * pCoeffs, q15_t * pState, q15_t mu, uint32_t blockSize, uint8_t postShift) { /* Assign filter taps */ S->numTaps = numTaps; /* Assign coefficient pointer */ S->pCoeffs = pCoeffs; /* Clear state buffer and size is always blockSize + numTaps - 1 */ memset(pState, 0, (numTaps + (blockSize - 1u)) * sizeof(q15_t)); /* Assign post Shift value applied to coefficients */ S->postShift = postShift; /* Assign state pointer */ S->pState = pState; /* Assign Step size value */ S->mu = mu; /* Initialize reciprocal pointer table */ S->recipTable = armRecipTableQ15; /* Initialise Energy to zero */ S->energy = 0; /* Initialise x0 to zero */ S->x0 = 0; } /** * @} end of LMS_NORM group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_lms_norm_init_q15.c
C
lgpl
3,184
/* ---------------------------------------------------------------------- * Copyright (C) 2010 ARM Limited. All rights reserved. * * $Date: 15. July 2011 * $Revision: V1.0.10 * * Project: CMSIS DSP Library * Title: arm_biquad_cascade_df1_fast_q15.c * * Description: Fast processing function for the * Q15 Biquad cascade filter. * * Target Processor: Cortex-M4/Cortex-M3 * * Version 1.0.10 2011/7/15 * Big Endian support added and Merged M0 and M3/M4 Source code. * * Version 1.0.3 2010/11/29 * Re-organized the CMSIS folders and updated documentation. * * Version 1.0.2 2010/11/11 * Documentation updated. * * Version 1.0.1 2010/10/05 * Production release and review comments incorporated. * * Version 1.0.0 2010/09/20 * Production release and review comments incorporated. * * Version 0.0.9 2010/08/16 * Initial version * * * -------------------------------------------------------------------- */ #include "arm_math.h" /** * @ingroup groupFilters */ /** * @addtogroup BiquadCascadeDF1 * @{ */ /** * @details * @param[in] *S points to an instance of the Q15 Biquad cascade structure. * @param[in] *pSrc points to the block of input data. * @param[out] *pDst points to the block of output data. * @param[in] blockSize number of samples to process per call. * @return none. * * <b>Scaling and Overflow Behavior:</b> * \par * This fast version uses a 32-bit accumulator with 2.30 format. * The accumulator maintains full precision of the intermediate multiplication results but provides only a single guard bit. * Thus, if the accumulator result overflows it wraps around and distorts the result. * In order to avoid overflows completely the input signal must be scaled down by two bits and lie in the range [-0.25 +0.25). * The 2.30 accumulator is then shifted by <code>postShift</code> bits and the result truncated to 1.15 format by discarding the low 16 bits. * * \par * Refer to the function <code>arm_biquad_cascade_df1_q15()</code> for a slower implementation of this function which uses 64-bit accumulation to avoid wrap around distortion. Both the slow and the fast versions use the same instance structure. * Use the function <code>arm_biquad_cascade_df1_init_q15()</code> to initialize the filter structure. * */ void arm_biquad_cascade_df1_fast_q15( const arm_biquad_casd_df1_inst_q15 * S, q15_t * pSrc, q15_t * pDst, uint32_t blockSize) { q15_t *pIn = pSrc; /* Source pointer */ q15_t *pOut = pDst; /* Destination pointer */ q31_t in; /* Temporary variable to hold input value */ q31_t out; /* Temporary variable to hold output value */ q31_t b0; /* Temporary variable to hold bo value */ q31_t b1, a1; /* Filter coefficients */ q31_t state_in, state_out; /* Filter state variables */ q31_t acc0; /* Accumulator */ int32_t shift = (int32_t) (15 - S->postShift); /* Post shift */ q15_t *pState = S->pState; /* State pointer */ q15_t *pCoeffs = S->pCoeffs; /* Coefficient pointer */ q31_t *pState_q31; /* 32-bit state pointer for SIMD implementation */ uint32_t sample, stage = S->numStages; /* Stage loop counter */ do { /* Initialize state pointer of type q31 */ pState_q31 = (q31_t *) (pState); /* Read the b0 and 0 coefficients using SIMD */ b0 = *__SIMD32(pCoeffs)++; /* Read the b1 and b2 coefficients using SIMD */ b1 = *__SIMD32(pCoeffs)++; /* Read the a1 and a2 coefficients using SIMD */ a1 = *__SIMD32(pCoeffs)++; /* Read the input state values from the state buffer: x[n-1], x[n-2] */ state_in = (q31_t) (*pState_q31++); /* Read the output state values from the state buffer: y[n-1], y[n-2] */ state_out = (q31_t) (*pState_q31); /* Apply loop unrolling and compute 2 output values simultaneously. */ /* The variables acc0 ... acc3 hold output values that are being computed: * * acc0 = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] * acc0 = b0 * x[n] + b1 * x[n-1] + b2 * x[n-2] + a1 * y[n-1] + a2 * y[n-2] */ sample = blockSize >> 1u; /* First part of the processing with loop unrolling. Compute 2 outputs at a time. ** a second loop below computes the remaining 1 sample. */ while(sample > 0u) { /* Read the input */ in = *__SIMD32(pIn)++; /* out = b0 * x[n] + 0 * 0 */ out = __SMUAD(b0, in); /* acc0 = b1 * x[n-1] + acc0 += b2 * x[n-2] + out */ acc0 = __SMLAD(b1, state_in, out); /* acc0 += a1 * y[n-1] + acc0 += a2 * y[n-2] */ acc0 = __SMLAD(a1, state_out, acc0); /* The result is converted from 3.29 to 1.31 and then saturation is applied */ out = __SSAT((acc0 >> shift), 16); /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc0 */ /* x[n-N], x[n-N-1] are packed together to make state_in of type q31 */ /* y[n-N], y[n-N-1] are packed together to make state_out of type q31 */ #ifndef ARM_MATH_BIG_ENDIAN state_in = __PKHBT(in, state_in, 16); state_out = __PKHBT(out, state_out, 16); #else state_in = __PKHBT(state_in >> 16, (in >> 16), 16); state_out = __PKHBT(state_out >> 16, (out), 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* out = b0 * x[n] + 0 * 0 */ out = __SMUADX(b0, in); /* acc0 = b1 * x[n-1] + acc0 += b2 * x[n-2] + out */ acc0 = __SMLAD(b1, state_in, out); /* acc0 += a1 * y[n-1] + acc0 += a2 * y[n-2] */ acc0 = __SMLAD(a1, state_out, acc0); /* The result is converted from 3.29 to 1.31 and then saturation is applied */ out = __SSAT((acc0 >> shift), 16); /* Store the output in the destination buffer. */ #ifndef ARM_MATH_BIG_ENDIAN *__SIMD32(pOut)++ = __PKHBT(state_out, out, 16); #else *__SIMD32(pOut)++ = __PKHBT(out, state_out >> 16, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc0 */ /* x[n-N], x[n-N-1] are packed together to make state_in of type q31 */ /* y[n-N], y[n-N-1] are packed together to make state_out of type q31 */ #ifndef ARM_MATH_BIG_ENDIAN state_in = __PKHBT(in >> 16, state_in, 16); state_out = __PKHBT(out, state_out, 16); #else state_in = __PKHBT(state_in >> 16, in, 16); state_out = __PKHBT(state_out >> 16, out, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* Decrement the loop counter */ sample--; } /* If the blockSize is not a multiple of 2, compute any remaining output samples here. ** No loop unrolling is used. */ if((blockSize & 0x1u) != 0u) { /* Read the input */ in = *pIn++; /* out = b0 * x[n] + 0 * 0 */ #ifndef ARM_MATH_BIG_ENDIAN out = __SMUAD(b0, in); #else out = __SMUADX(b0, in); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ /* acc0 = b1 * x[n-1] + acc0 += b2 * x[n-2] + out */ acc0 = __SMLAD(b1, state_in, out); /* acc0 += a1 * y[n-1] + acc0 += a2 * y[n-2] */ acc0 = __SMLAD(a1, state_out, acc0); /* The result is converted from 3.29 to 1.31 and then saturation is applied */ out = __SSAT((acc0 >> shift), 16); /* Store the output in the destination buffer. */ *pOut++ = (q15_t) out; /* Every time after the output is computed state should be updated. */ /* The states should be updated as: */ /* Xn2 = Xn1 */ /* Xn1 = Xn */ /* Yn2 = Yn1 */ /* Yn1 = acc0 */ /* x[n-N], x[n-N-1] are packed together to make state_in of type q31 */ /* y[n-N], y[n-N-1] are packed together to make state_out of type q31 */ #ifndef ARM_MATH_BIG_ENDIAN state_in = __PKHBT(in, state_in, 16); state_out = __PKHBT(out, state_out, 16); #else state_in = __PKHBT(state_in >> 16, in, 16); state_out = __PKHBT(state_out >> 16, out, 16); #endif /* #ifndef ARM_MATH_BIG_ENDIAN */ } /* The first stage goes from the input buffer to the output buffer. */ /* Subsequent (numStages - 1) occur in-place in the output buffer */ pIn = pDst; /* Reset the output pointer */ pOut = pDst; /* Store the updated state variables back into the state array */ *__SIMD32(pState)++ = state_in; *__SIMD32(pState)++ = state_out; /* Decrement the loop counter */ stage--; } while(stage > 0u); } /** * @} end of BiquadCascadeDF1 group */
1137519-player
lib/CMSIS/DSP_Lib/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q15.c
C
lgpl
9,861