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

Defined in namespace cxxblas. Function ger with 5 template parameters.

template <typename IndexType, typename ALPHA, typename VX, typename VY,
          typename MA>
    void
    geru(StorageOrder order,
         IndexType m, IndexType n,
         const ALPHA &alpha,
         const VX *x, IndexType incX,
         const VY *y, IndexType incY,
         MA *A, IndexType ldA);

Defined in namespace cxxblas. Function geru with 5 template parameters.

template <typename IndexType, typename ALPHA, typename VX, typename VY,
          typename MA>
    void
    gerc(StorageOrder order,
         IndexType m, IndexType n,
         const ALPHA &alpha,
         const VX *x, IndexType incX,
         const VY *y, IndexType incY,
         MA *A, IndexType ldA);

Defined in namespace cxxblas. Function gerc with 5 template parameters.

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

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

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

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

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

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

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

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

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

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

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

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

Home

View document source

© 2011-2012 Michael Lehn