Home Browse Files
template <typename IndexType, typename ALPHA, typename MA,
          typename BETA, typename MC>
    void
    syrk(StorageOrder order, StorageUpLo upLo,
         Transpose trans,
         IndexType n, IndexType k,
         const ALPHA &alpha,
         const MA *A, IndexType ldA,
         const BETA &beta,
         MC *C, IndexType ldC);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    syrk(StorageOrder order, StorageUpLo upLo,
         Transpose trans,
         IndexType n, IndexType k,
         float alpha,
         const float *A, IndexType ldA,
         float beta,
         float *C, IndexType ldC);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    syrk(StorageOrder order, StorageUpLo upLo,
         Transpose trans,
         IndexType n, IndexType k,
         double alpha,
         const double *A, IndexType ldA,
         double beta,
         double *C, IndexType ldC);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    syrk(StorageOrder order, StorageUpLo upLo,
         Transpose trans,
         IndexType n, IndexType k,
         const ComplexFloat &alpha,
         const ComplexFloat *A, IndexType ldA,
         const ComplexFloat &beta,
         ComplexFloat *C, IndexType ldC);

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

template <typename IndexType>
    typename If<IndexType>::isBlasCompatibleInteger
    syrk(StorageOrder order, StorageUpLo upLo,
         Transpose trans,
         IndexType n, IndexType k,
         const ComplexDouble &alpha,
         const ComplexDouble *A, IndexType ldA,
         const ComplexDouble &beta,
         ComplexDouble *C, IndexType ldC);

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

Home

View document source

© 2011-2012 Michael Lehn