Home Browse Files
template <typename IndexType, typename VT>
    VT
    dotu(IndexType      n,
         const VT       *x,
         IndexType      incX,
         const VT       *y,
         IndexType      incY);

Defined in namespace ulmBLAS. Function dotu with 2 template parameters.

template <typename IndexType, typename VX, typename VY, typename Result>
    void
    dotu(IndexType      n,
         const VX       *x,
         IndexType      incX,
         const VY       *y,
         IndexType      incY,
         Result         &result);

Defined in namespace ulmBLAS. Function dotu with 4 template parameters.

template <typename IndexType, typename VT>
    VT
    dotc(IndexType      n,
         const VT       *x,
         IndexType      incX,
         const VT       *y,
         IndexType      incY);

Defined in namespace ulmBLAS. Function dotc with 2 template parameters.

template <typename IndexType, typename VX, typename VY, typename Result>
    void
    dotc(IndexType      n,
         const VX       *x,
         IndexType      incX,
         const VY       *y,
         IndexType      incY,
         Result         &result);

Defined in namespace ulmBLAS. Function dotc with 4 template parameters.

Home

View document source

© 2011-2015 Michael Lehn