Home Browse Files
template <typename IndexType, typename Alpha, typename TX, typename TY>
    void
    axpy(IndexType    n,
         const Alpha  &alpha,
         const TX     *x,
         IndexType    incX,
         TY           *y,
         IndexType    incY);

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

template <typename IndexType, typename Alpha, typename TX, typename TY>
    void
    acxpy(IndexType    n,
          const Alpha  &alpha,
          const TX     *x,
          IndexType    incX,
          TY           *y,
          IndexType    incY);

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

template <typename IndexType, typename Alpha, typename MX, typename MY>
    void
    geaxpy(IndexType      m,
           IndexType      n,
           const Alpha    &alpha,
           bool           transX,
           bool           conjX,
           const MX       *X,
           IndexType      incRowX,
           IndexType      incColX,
           MY             *Y,
           IndexType      incRowY,
           IndexType      incColY);

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

Home

View document source

© 2011-2015 Michael Lehn