Go to the source code of this file.
|
| struct | tlapack::traits::CreateFunctor< matrix_t, class > |
| | Functor for data creation. More...
|
| |
| struct | tlapack::traits::CreateStaticFunctor< matrix_t, m, n, class > |
| | Functor for data creation with static size. More...
|
| |
| struct | tlapack::traits::entry_type_trait< T, class > |
| | Entry type trait. More...
|
| |
| struct | tlapack::traits::layout_trait< array_t, class > |
| | Trait to determine the layout of a given data structure. More...
|
| |
| struct | tlapack::traits::matrix_type_traits< matrix_t, int > |
| |
| struct | tlapack::traits::matrix_type_traits< matrixA_t, matrixB_t, matrix_t... > |
| |
| struct | tlapack::traits::size_type_trait< T, class > |
| | Size type trait. More...
|
| |
| struct | tlapack::traits::vector_type_traits< vector_t, int > |
| |
| struct | tlapack::traits::vector_type_traits< vectorA_t, vectorB_t, vector_t... > |
| |
|
| namespace | tlapack |
| | Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
|
| |
|
| template<class T > |
| using | tlapack::Create = traits::CreateFunctor< T, int > |
| | Alias for traits::CreateFunctor<,int>.
|
| |
| template<class T , int m, int n = -1> |
| using | tlapack::CreateStatic = traits::CreateStaticFunctor< T, m, n, int > |
| | Alias for traits::CreateStaticFunctor<,int>.
|
| |
|
template<class... matrix_t> |
| using | tlapack::matrix_type = typename traits::matrix_type_traits< matrix_t..., int >::type |
| | Common matrix type deduced from the list of types.
|
| |
|
template<class T > |
| using | tlapack::size_type = typename traits::size_type_trait< T, int >::type |
| | Size type of a matrix or vector.
|
| |
|
template<class T > |
| using | tlapack::type_t = typename traits::entry_type_trait< T, int >::type |
| | Entry type of a matrix or vector.
|
| |
|
template<class... vector_t> |
| using | tlapack::vector_type = typename traits::vector_type_traits< vector_t..., int >::type |
| | Common vector type deduced from the list of types.
|
| |
- Author
- Weslley S Pereira, University of Colorado Denver, USA