CMSIS DSP library

Dependents:   performance_timer Surfboard_ gps2rtty Capstone ... more

Legacy Warning

This is an mbed 2 library. To learn more about mbed OS 5, visit the docs.

Committer:
emilmont
Date:
Thu May 30 17:10:11 2013 +0100
Revision:
2:da51fb522205
Parent:
1:fdd22bb7aa52
Child:
3:7a284390b0ce
Keep "cmsis-dsp" module in synch with its source

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 1:fdd22bb7aa52 1 /* ----------------------------------------------------------------------
emilmont 1:fdd22bb7aa52 2 * Copyright (C) 2010 ARM Limited. All rights reserved.
emilmont 1:fdd22bb7aa52 3 *
emilmont 1:fdd22bb7aa52 4 * $Date: 15. February 2012
emilmont 2:da51fb522205 5 * $Revision: V1.1.0
emilmont 1:fdd22bb7aa52 6 *
emilmont 2:da51fb522205 7 * Project: CMSIS DSP Library
emilmont 2:da51fb522205 8 * Title: arm_mat_trans_q31.c
emilmont 1:fdd22bb7aa52 9 *
emilmont 2:da51fb522205 10 * Description: Q31 matrix transpose.
emilmont 1:fdd22bb7aa52 11 *
emilmont 1:fdd22bb7aa52 12 * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0
emilmont 1:fdd22bb7aa52 13 *
emilmont 1:fdd22bb7aa52 14 * Version 1.1.0 2012/02/15
emilmont 1:fdd22bb7aa52 15 * Updated with more optimizations, bug fixes and minor API changes.
emilmont 1:fdd22bb7aa52 16 *
emilmont 1:fdd22bb7aa52 17 * Version 1.0.10 2011/7/15
emilmont 1:fdd22bb7aa52 18 * Big Endian support added and Merged M0 and M3/M4 Source code.
emilmont 1:fdd22bb7aa52 19 *
emilmont 1:fdd22bb7aa52 20 * Version 1.0.3 2010/11/29
emilmont 1:fdd22bb7aa52 21 * Re-organized the CMSIS folders and updated documentation.
emilmont 1:fdd22bb7aa52 22 *
emilmont 1:fdd22bb7aa52 23 * Version 1.0.2 2010/11/11
emilmont 1:fdd22bb7aa52 24 * Documentation updated.
emilmont 1:fdd22bb7aa52 25 *
emilmont 1:fdd22bb7aa52 26 * Version 1.0.1 2010/10/05
emilmont 1:fdd22bb7aa52 27 * Production release and review comments incorporated.
emilmont 1:fdd22bb7aa52 28 *
emilmont 1:fdd22bb7aa52 29 * Version 1.0.0 2010/09/20
emilmont 1:fdd22bb7aa52 30 * Production release and review comments incorporated.
emilmont 1:fdd22bb7aa52 31 *
emilmont 1:fdd22bb7aa52 32 * Version 0.0.5 2010/04/26
emilmont 1:fdd22bb7aa52 33 * incorporated review comments and updated with latest CMSIS layer
emilmont 1:fdd22bb7aa52 34 *
emilmont 1:fdd22bb7aa52 35 * Version 0.0.3 2010/03/10
emilmont 1:fdd22bb7aa52 36 * Initial version
emilmont 1:fdd22bb7aa52 37 * -------------------------------------------------------------------- */
emilmont 1:fdd22bb7aa52 38
emilmont 1:fdd22bb7aa52 39 #include "arm_math.h"
emilmont 1:fdd22bb7aa52 40
emilmont 1:fdd22bb7aa52 41 /**
emilmont 1:fdd22bb7aa52 42 * @ingroup groupMatrix
emilmont 1:fdd22bb7aa52 43 */
emilmont 1:fdd22bb7aa52 44
emilmont 1:fdd22bb7aa52 45 /**
emilmont 1:fdd22bb7aa52 46 * @addtogroup MatrixTrans
emilmont 1:fdd22bb7aa52 47 * @{
emilmont 1:fdd22bb7aa52 48 */
emilmont 1:fdd22bb7aa52 49
emilmont 1:fdd22bb7aa52 50 /*
emilmont 1:fdd22bb7aa52 51 * @brief Q31 matrix transpose.
emilmont 1:fdd22bb7aa52 52 * @param[in] *pSrc points to the input matrix
emilmont 1:fdd22bb7aa52 53 * @param[out] *pDst points to the output matrix
emilmont 2:da51fb522205 54 * @return The function returns either <code>ARM_MATH_SIZE_MISMATCH</code>
emilmont 1:fdd22bb7aa52 55 * or <code>ARM_MATH_SUCCESS</code> based on the outcome of size checking.
emilmont 1:fdd22bb7aa52 56 */
emilmont 1:fdd22bb7aa52 57
emilmont 1:fdd22bb7aa52 58 arm_status arm_mat_trans_q31(
emilmont 1:fdd22bb7aa52 59 const arm_matrix_instance_q31 * pSrc,
emilmont 1:fdd22bb7aa52 60 arm_matrix_instance_q31 * pDst)
emilmont 1:fdd22bb7aa52 61 {
emilmont 1:fdd22bb7aa52 62 q31_t *pIn = pSrc->pData; /* input data matrix pointer */
emilmont 1:fdd22bb7aa52 63 q31_t *pOut = pDst->pData; /* output data matrix pointer */
emilmont 1:fdd22bb7aa52 64 q31_t *px; /* Temporary output data matrix pointer */
emilmont 1:fdd22bb7aa52 65 uint16_t nRows = pSrc->numRows; /* number of nRows */
emilmont 1:fdd22bb7aa52 66 uint16_t nColumns = pSrc->numCols; /* number of nColumns */
emilmont 1:fdd22bb7aa52 67
emilmont 1:fdd22bb7aa52 68 #ifndef ARM_MATH_CM0
emilmont 1:fdd22bb7aa52 69
emilmont 1:fdd22bb7aa52 70 /* Run the below code for Cortex-M4 and Cortex-M3 */
emilmont 1:fdd22bb7aa52 71
emilmont 1:fdd22bb7aa52 72 uint16_t blkCnt, i = 0u, row = nRows; /* loop counters */
emilmont 1:fdd22bb7aa52 73 arm_status status; /* status of matrix transpose */
emilmont 1:fdd22bb7aa52 74
emilmont 1:fdd22bb7aa52 75
emilmont 1:fdd22bb7aa52 76 #ifdef ARM_MATH_MATRIX_CHECK
emilmont 1:fdd22bb7aa52 77
emilmont 1:fdd22bb7aa52 78
emilmont 1:fdd22bb7aa52 79 /* Check for matrix mismatch condition */
emilmont 1:fdd22bb7aa52 80 if((pSrc->numRows != pDst->numCols) || (pSrc->numCols != pDst->numRows))
emilmont 1:fdd22bb7aa52 81 {
emilmont 1:fdd22bb7aa52 82 /* Set status as ARM_MATH_SIZE_MISMATCH */
emilmont 1:fdd22bb7aa52 83 status = ARM_MATH_SIZE_MISMATCH;
emilmont 1:fdd22bb7aa52 84 }
emilmont 1:fdd22bb7aa52 85 else
emilmont 1:fdd22bb7aa52 86 #endif /* #ifdef ARM_MATH_MATRIX_CHECK */
emilmont 1:fdd22bb7aa52 87
emilmont 1:fdd22bb7aa52 88 {
emilmont 1:fdd22bb7aa52 89 /* Matrix transpose by exchanging the rows with columns */
emilmont 1:fdd22bb7aa52 90 /* row loop */
emilmont 1:fdd22bb7aa52 91 do
emilmont 1:fdd22bb7aa52 92 {
emilmont 1:fdd22bb7aa52 93 /* Apply loop unrolling and exchange the columns with row elements */
emilmont 1:fdd22bb7aa52 94 blkCnt = nColumns >> 2u;
emilmont 1:fdd22bb7aa52 95
emilmont 1:fdd22bb7aa52 96 /* The pointer px is set to starting address of the column being processed */
emilmont 1:fdd22bb7aa52 97 px = pOut + i;
emilmont 1:fdd22bb7aa52 98
emilmont 1:fdd22bb7aa52 99 /* First part of the processing with loop unrolling. Compute 4 outputs at a time.
emilmont 1:fdd22bb7aa52 100 ** a second loop below computes the remaining 1 to 3 samples. */
emilmont 1:fdd22bb7aa52 101 while(blkCnt > 0u)
emilmont 1:fdd22bb7aa52 102 {
emilmont 1:fdd22bb7aa52 103 /* Read and store the input element in the destination */
emilmont 1:fdd22bb7aa52 104 *px = *pIn++;
emilmont 1:fdd22bb7aa52 105
emilmont 1:fdd22bb7aa52 106 /* Update the pointer px to point to the next row of the transposed matrix */
emilmont 1:fdd22bb7aa52 107 px += nRows;
emilmont 1:fdd22bb7aa52 108
emilmont 1:fdd22bb7aa52 109 /* Read and store the input element in the destination */
emilmont 1:fdd22bb7aa52 110 *px = *pIn++;
emilmont 1:fdd22bb7aa52 111
emilmont 1:fdd22bb7aa52 112 /* Update the pointer px to point to the next row of the transposed matrix */
emilmont 1:fdd22bb7aa52 113 px += nRows;
emilmont 1:fdd22bb7aa52 114
emilmont 1:fdd22bb7aa52 115 /* Read and store the input element in the destination */
emilmont 1:fdd22bb7aa52 116 *px = *pIn++;
emilmont 1:fdd22bb7aa52 117
emilmont 1:fdd22bb7aa52 118 /* Update the pointer px to point to the next row of the transposed matrix */
emilmont 1:fdd22bb7aa52 119 px += nRows;
emilmont 1:fdd22bb7aa52 120
emilmont 1:fdd22bb7aa52 121 /* Read and store the input element in the destination */
emilmont 1:fdd22bb7aa52 122 *px = *pIn++;
emilmont 1:fdd22bb7aa52 123
emilmont 1:fdd22bb7aa52 124 /* Update the pointer px to point to the next row of the transposed matrix */
emilmont 1:fdd22bb7aa52 125 px += nRows;
emilmont 1:fdd22bb7aa52 126
emilmont 1:fdd22bb7aa52 127 /* Decrement the column loop counter */
emilmont 1:fdd22bb7aa52 128 blkCnt--;
emilmont 1:fdd22bb7aa52 129 }
emilmont 1:fdd22bb7aa52 130
emilmont 1:fdd22bb7aa52 131 /* Perform matrix transpose for last 3 samples here. */
emilmont 1:fdd22bb7aa52 132 blkCnt = nColumns % 0x4u;
emilmont 1:fdd22bb7aa52 133
emilmont 1:fdd22bb7aa52 134 while(blkCnt > 0u)
emilmont 1:fdd22bb7aa52 135 {
emilmont 1:fdd22bb7aa52 136 /* Read and store the input element in the destination */
emilmont 1:fdd22bb7aa52 137 *px = *pIn++;
emilmont 1:fdd22bb7aa52 138
emilmont 1:fdd22bb7aa52 139 /* Update the pointer px to point to the next row of the transposed matrix */
emilmont 1:fdd22bb7aa52 140 px += nRows;
emilmont 1:fdd22bb7aa52 141
emilmont 1:fdd22bb7aa52 142 /* Decrement the column loop counter */
emilmont 1:fdd22bb7aa52 143 blkCnt--;
emilmont 1:fdd22bb7aa52 144 }
emilmont 1:fdd22bb7aa52 145
emilmont 1:fdd22bb7aa52 146 #else
emilmont 1:fdd22bb7aa52 147
emilmont 1:fdd22bb7aa52 148 /* Run the below code for Cortex-M0 */
emilmont 1:fdd22bb7aa52 149
emilmont 1:fdd22bb7aa52 150 uint16_t col, i = 0u, row = nRows; /* loop counters */
emilmont 1:fdd22bb7aa52 151 arm_status status; /* status of matrix transpose */
emilmont 1:fdd22bb7aa52 152
emilmont 1:fdd22bb7aa52 153
emilmont 1:fdd22bb7aa52 154 #ifdef ARM_MATH_MATRIX_CHECK
emilmont 1:fdd22bb7aa52 155
emilmont 1:fdd22bb7aa52 156 /* Check for matrix mismatch condition */
emilmont 1:fdd22bb7aa52 157 if((pSrc->numRows != pDst->numCols) || (pSrc->numCols != pDst->numRows))
emilmont 1:fdd22bb7aa52 158 {
emilmont 1:fdd22bb7aa52 159 /* Set status as ARM_MATH_SIZE_MISMATCH */
emilmont 1:fdd22bb7aa52 160 status = ARM_MATH_SIZE_MISMATCH;
emilmont 1:fdd22bb7aa52 161 }
emilmont 1:fdd22bb7aa52 162 else
emilmont 1:fdd22bb7aa52 163 #endif /* #ifdef ARM_MATH_MATRIX_CHECK */
emilmont 1:fdd22bb7aa52 164
emilmont 1:fdd22bb7aa52 165 {
emilmont 1:fdd22bb7aa52 166 /* Matrix transpose by exchanging the rows with columns */
emilmont 1:fdd22bb7aa52 167 /* row loop */
emilmont 1:fdd22bb7aa52 168 do
emilmont 1:fdd22bb7aa52 169 {
emilmont 1:fdd22bb7aa52 170 /* The pointer px is set to starting address of the column being processed */
emilmont 1:fdd22bb7aa52 171 px = pOut + i;
emilmont 1:fdd22bb7aa52 172
emilmont 1:fdd22bb7aa52 173 /* Initialize column loop counter */
emilmont 1:fdd22bb7aa52 174 col = nColumns;
emilmont 1:fdd22bb7aa52 175
emilmont 1:fdd22bb7aa52 176 while(col > 0u)
emilmont 1:fdd22bb7aa52 177 {
emilmont 1:fdd22bb7aa52 178 /* Read and store the input element in the destination */
emilmont 1:fdd22bb7aa52 179 *px = *pIn++;
emilmont 1:fdd22bb7aa52 180
emilmont 1:fdd22bb7aa52 181 /* Update the pointer px to point to the next row of the transposed matrix */
emilmont 1:fdd22bb7aa52 182 px += nRows;
emilmont 1:fdd22bb7aa52 183
emilmont 1:fdd22bb7aa52 184 /* Decrement the column loop counter */
emilmont 1:fdd22bb7aa52 185 col--;
emilmont 1:fdd22bb7aa52 186 }
emilmont 1:fdd22bb7aa52 187
emilmont 1:fdd22bb7aa52 188 #endif /* #ifndef ARM_MATH_CM0 */
emilmont 1:fdd22bb7aa52 189
emilmont 1:fdd22bb7aa52 190 i++;
emilmont 1:fdd22bb7aa52 191
emilmont 1:fdd22bb7aa52 192 /* Decrement the row loop counter */
emilmont 1:fdd22bb7aa52 193 row--;
emilmont 1:fdd22bb7aa52 194
emilmont 1:fdd22bb7aa52 195 }
emilmont 1:fdd22bb7aa52 196 while(row > 0u); /* row loop end */
emilmont 1:fdd22bb7aa52 197
emilmont 1:fdd22bb7aa52 198 /* set status as ARM_MATH_SUCCESS */
emilmont 1:fdd22bb7aa52 199 status = ARM_MATH_SUCCESS;
emilmont 1:fdd22bb7aa52 200 }
emilmont 1:fdd22bb7aa52 201
emilmont 1:fdd22bb7aa52 202 /* Return to application */
emilmont 1:fdd22bb7aa52 203 return (status);
emilmont 1:fdd22bb7aa52 204 }
emilmont 1:fdd22bb7aa52 205
emilmont 1:fdd22bb7aa52 206 /**
emilmont 1:fdd22bb7aa52 207 * @} end of MatrixTrans group
emilmont 1:fdd22bb7aa52 208 */