Home Browse Files
template <typename IndexType, typename X, typename Y, typename Result>
    void
    dotu(IndexType n, const X *x, IndexType incX, const Y *y, IndexType incY,
         Result &result);

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

template <typename IndexType, typename X, typename Y, typename Result>
    void
    dot(IndexType n, const X *x, IndexType incX, const Y *y, IndexType incY,
        Result &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    sdot(IndexType n, float alpha,
         const float *x, IndexType incX,
         const float *y, IndexType incY,
         float &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dot(IndexType n,
        const float *x, IndexType incX,
        const float *y, IndexType incY,
        double &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dot(IndexType n,
        const float *x, IndexType incX,
        const float  *y, IndexType incY,
        float &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dot(IndexType n,
        const double *x, IndexType incX,
        const double *y, IndexType incY,
        double &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dotu(IndexType n,
         const ComplexFloat  *x, IndexType incX,
         const ComplexFloat  *y, IndexType incY,
         ComplexFloat &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dot(IndexType n,
        const ComplexFloat  *x, IndexType incX,
        const ComplexFloat  *y, IndexType incY,
        ComplexFloat &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dotu(IndexType n,
         const ComplexDouble *x, IndexType incX,
         const ComplexDouble *y, IndexType incY,
         ComplexDouble &result);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    dot(IndexType n,
        const ComplexDouble *x, IndexType incX,
        const ComplexDouble *y, IndexType incY,
        ComplexDouble &result);

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

Home

View document source

© 2011-2012 Michael Lehn