|
Expression Templates Library (ETL)
|
MKL implementation of the transpose algorithm. More...

Go to the source code of this file.
Functions | |
| template<typename C > | |
| void | etl::impl::blas::inplace_square_transpose ([[maybe_unused]] C &&c) |
| Inplace transposition of the square matrix c. More... | |
| template<typename C > | |
| void | etl::impl::blas::inplace_rectangular_transpose ([[maybe_unused]] C &&c) |
| Inplace transposition of the rectangular matrix c. More... | |
| template<typename A , typename C > | |
| void | etl::impl::blas::transpose ([[maybe_unused]] A &&a, [[maybe_unused]] C &&c) |
| Transpose the matrix a and the store the result in c. More... | |
MKL implementation of the transpose algorithm.
| void etl::impl::blas::inplace_rectangular_transpose | ( | [[maybe_unused] ] C && | c | ) |
Inplace transposition of the rectangular matrix c.
| c | The matrix to transpose |
| void etl::impl::blas::inplace_square_transpose | ( | [[maybe_unused] ] C && | c | ) |
Inplace transposition of the square matrix c.
| c | The matrix to transpose |
| void etl::impl::blas::transpose | ( | [[maybe_unused] ] A && | a, |
| [[maybe_unused] ] C && | c | ||
| ) |
Transpose the matrix a and the store the result in c.
| a | The matrix to transpose |
| c | The target matrix |
1.8.13