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

Defined in namespace cxxblas. Function syr2k with 6 template parameters.

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

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

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

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

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

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

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

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

Home

View document source

© 2011-2012 Michael Lehn