Home Browse Files
template <typename IndexType, typename ALPHA, typename MA, typename MB>
    void
    trsm(StorageOrder order, Side side, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType m, IndexType n,
         const ALPHA &alpha,
         const MA *A, IndexType ldA,
         MB *B, IndexType ldB);

Defined in namespace cxxblas. Function trsm with 4 template parameters.

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trsm(StorageOrder order, Side side, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType m, IndexType n,
         float alpha,
         const float *A, IndexType ldA,
         float *B, IndexType ldB);

Defined in namespace cxxblas. Function trsm with 1 template parameters.

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trsm(StorageOrder order, Side side, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType m, IndexType n,
         double alpha,
         const double *A, IndexType ldA,
         double *B, IndexType ldB);

Defined in namespace cxxblas. Function trsm with 1 template parameters.

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trsm(StorageOrder order, Side side, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType m, IndexType n,
         const ComplexFloat &alpha,
         const ComplexFloat *A, IndexType ldA,
         ComplexFloat *B, IndexType ldB);

Defined in namespace cxxblas. Function trsm with 1 template parameters.

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    trsm(StorageOrder order, Side side, StorageUpLo upLo,
         Transpose transA, Diag diag,
         IndexType m, IndexType n,
         const ComplexDouble &alpha,
         const ComplexDouble *A, IndexType ldA,
         ComplexDouble *B, IndexType ldB);

Defined in namespace cxxblas. Function trsm with 1 template parameters.

Home

View document source

© 2011-2012 Michael Lehn