This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!> | |
!> @brief Perform B <- alpha * A^T + B | |
!> | |
!> @note OpenMP parallelization is used for faster matrix transposing. | |
!> The speed-up is about 3-10 times in comparison | |
!> with original implementation via BLAS-1 routines. | |
!> | |
!> @param[in] n size of square matrix | |
!> @param[in] alpha scaling factor | |
!> @param[in] mat n-by-n matrix A |
OlderNewer