HomeSort by relevance Sort by last modified time
    Searched defs:syrk (Results 1 - 2 of 2) sorted by null

  /external/eigen/blas/
level3_impl.h 305 int EIGEN_BLAS_FUNC(syrk)(char *uplo, char *op, int *n, int *k, RealScalar *palpha, RealScalar *pa, int *lda, RealScalar *pbeta, RealScalar *pc, int *ldc) function
307 // std::cerr << "in syrk " << *uplo << " " << *op << " " << *n << " " << *k << " " << *palpha << " " << *lda << " " << *pbeta << " " << *ldc << "\n";
341 return xerbla_(SCALAR_SUFFIX_UP"SYRK ",&info,6);
    [all...]
  /external/eigen/test/
product_syrk.cpp 12 template<typename MatrixType> void syrk(const MatrixType& m) function
90 CALL_SUBTEST_1( syrk(MatrixXf(s, s)) );
92 CALL_SUBTEST_2( syrk(MatrixXd(s, s)) );
94 CALL_SUBTEST_3( syrk(MatrixXcf(s, s)) );
96 CALL_SUBTEST_4( syrk(MatrixXcd(s, s)) );

Completed in 2188 milliseconds