Home Browse Files
template <typename IndexType, typename ALPHA, typename MA, typename VX,
          typename BETA, typename VY>
    void
    gemv(StorageOrder order, Transpose trans,
         IndexType m, IndexType n,
         const ALPHA &alpha,
         const MA *A, IndexType ldA,
         const VX *x, IndexType incX,
         const BETA &beta,
         VY *y, IndexType incY);

Defined in namespace cxxblas. Function gemv with 6 template parameters.

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    gemv(StorageOrder order, Transpose trans,
         IndexType m, IndexType n,
         float alpha,
         const float *A, IndexType ldA,
         const float *x, IndexType incX,
         float beta,
         float *y, IndexType incY);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    gemv(StorageOrder order, Transpose trans,
         IndexType m, IndexType n,
         double alpha,
         const double *A, IndexType ldA,
         const double *x, IndexType incX,
         double beta,
         double *y, IndexType incY);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    gemv(StorageOrder order, Transpose trans,
         IndexType m, IndexType n,
         const ComplexFloat &alpha,
         const ComplexFloat *A, IndexType ldA,
         const ComplexFloat *x, IndexType incX,
         const ComplexFloat &beta,
         ComplexFloat *y, IndexType incY);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    gemv(StorageOrder order, Transpose trans,
         IndexType m, IndexType n,
         const ComplexDouble &alpha,
         const ComplexDouble *A, IndexType ldA,
         const ComplexDouble *x, IndexType incX,
         const ComplexDouble &beta,
         ComplexDouble *y, IndexType incY);

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

Home

View document source

© 2011-2012 Michael Lehn