Home Browse Files
template <typename IndexType, typename ALPHA, typename MA,
          typename BETA, typename MC>
    void
    herk(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 herk with 5 template parameters.

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

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

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

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

Home

View document source

© 2011-2012 Michael Lehn