Home
last modified time | relevance | path

Searched refs:BLASFUNC (Results 1 – 7 of 7) sorted by relevance

/external/eigen/bench/btl/libs/BLAS/
Dblas.h4 #define BLASFUNC(FUNC) FUNC##_ macro
14 int BLASFUNC(xerbla)(const char *, int *info, int);
16 float BLASFUNC(sdot) (int *, float *, int *, float *, int *);
17 float BLASFUNC(sdsdot)(int *, float *, float *, int *, float *, int *);
19 double BLASFUNC(dsdot) (int *, float *, int *, float *, int *);
20 double BLASFUNC(ddot) (int *, double *, int *, double *, int *);
21 double BLASFUNC(qdot) (int *, double *, int *, double *, int *);
24 int BLASFUNC(cdotu) (int *, float * , int *, float *, int *);
25 int BLASFUNC(cdotc) (int *, float *, int *, float *, int *);
26 void BLASFUNC(zdotu) (double *, int *, double *, int *, double *, int *);
[all …]
/external/eigen/Eigen/src/misc/
Dblas.h9 #define BLASFUNC(FUNC) FUNC##_ macro
19 int BLASFUNC(xerbla)(const char *, int *info, int);
21 float BLASFUNC(sdot) (int *, float *, int *, float *, int *);
22 float BLASFUNC(sdsdot)(int *, float *, float *, int *, float *, int *);
24 double BLASFUNC(dsdot) (int *, float *, int *, float *, int *);
25 double BLASFUNC(ddot) (int *, double *, int *, double *, int *);
26 double BLASFUNC(qdot) (int *, double *, int *, double *, int *);
28 int BLASFUNC(cdotuw) (int *, float *, int *, float *, int *, float*);
29 int BLASFUNC(cdotcw) (int *, float *, int *, float *, int *, float*);
30 int BLASFUNC(zdotuw) (int *, double *, int *, double *, int *, double*);
[all …]
Dlapack.h11 int BLASFUNC(csymv) (const char *, const int *, const float *, const float *, const int *, const …
12 int BLASFUNC(zsymv) (const char *, const int *, const double *, const double *, const int *, const …
13 int BLASFUNC(xsymv) (const char *, const int *, const double *, const double *, const int *, const …
16 int BLASFUNC(cspmv) (char *, int *, float *, float *,
18 int BLASFUNC(zspmv) (char *, int *, double *, double *,
20 int BLASFUNC(xspmv) (char *, int *, double *, double *,
23 int BLASFUNC(csyr) (char *, int *, float *, float *, int *,
25 int BLASFUNC(zsyr) (char *, int *, double *, double *, int *,
27 int BLASFUNC(xsyr) (char *, int *, double *, double *, int *,
30 int BLASFUNC(cspr) (char *, int *, float *, float *, int *,
[all …]
/external/eigen/blas/
Dsingle.cpp21 float BLASFUNC(sdsdot)(int* n, float* alpha, float* x, int* incx, float* y, int* incy) in BLASFUNC() function
22 { return double(*alpha) + BLASFUNC(dsdot)(n, x, incx, y, incy); } in BLASFUNC()
Ddouble.cpp22 double BLASFUNC(dsdot)(int* n, float* x, int* incx, float* y, int* incy) in BLASFUNC() function
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixMatrixTriangular_BLAS.h75 #define EIGEN_BLAS_RANKUPDATE_R(EIGTYPE, BLASTYPE, BLASFUNC) \ argument
91BLASFUNC(&uplo, &trans, &n, &k, &numext::real_ref(alpha), lhs, &lda, &numext::real_ref(beta), res,…
96 #define EIGEN_BLAS_RANKUPDATE_C(EIGTYPE, BLASTYPE, RTYPE, BLASFUNC) \ argument
124 BLASFUNC(&uplo, &trans, &n, &k, &alpha_, (BLASTYPE*)a_ptr, &lda, &beta_, (BLASTYPE*)res, &ldc); \
DSelfadjointMatrixVector_BLAS.h74 #define EIGEN_BLAS_SYMV_SPECIALIZATION(EIGTYPE,BLASTYPE,BLASFUNC) \ argument
98BLASFUNC(&uplo, &n, &numext::real_ref(alpha), (const BLASTYPE*)lhs, &lda, (const BLASTYPE*)x_ptr, …