Home Browse Files
template <typename IndexType, typename Alpha, typename TX, typename TY,
          typename TA>
    void
    ger(IndexType    m,
        IndexType    n,
        const Alpha  &alpha,
        const TX     *x,
        IndexType    incX,
        const TY     *y,
        IndexType    incY,
        TA           *A,
        IndexType    incRowA,
        IndexType    incColA);

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

template <typename IndexType, typename Alpha, typename TX, typename TY,
          typename TA>
    void
    gerc(IndexType    m,
         IndexType    n,
         const Alpha  &alpha,
         bool         conj,
         const TX     *x,
         IndexType    incX,
         const TY     *y,
         IndexType    incY,
         TA           *A,
         IndexType    incRowA,
         IndexType    incColA);

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

template <typename IndexType, typename Alpha, typename TX, typename TY,
          typename TA>
    void
    gerc(IndexType    m,
         IndexType    n,
         const Alpha  &alpha,
         const TX     *x,
         IndexType    incX,
         const TY     *y,
         IndexType    incY,
         TA           *A,
         IndexType    incRowA,
         IndexType    incColA);

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

Home

View document source

© 2011-2015 Michael Lehn