Searched refs:ipiv (Results 1 – 4 of 4) sorted by relevance
/external/eigen/lapack/ |
D | lu.cpp | 14 EIGEN_LAPACK_FUNC(getrf,(int *m, int *n, RealScalar *pa, int *lda, int *ipiv, int *info)) 32 ::blocked_lu(*m, *n, a, *lda, ipiv, nb_transpositions)); 35 ipiv[i]++; 46 EIGEN_LAPACK_FUNC(getrs,(char *trans, int *n, int *nrhs, RealScalar *pa, int *lda, int *ipiv, RealS… 66 ipiv[i]--; 69 B = PivotsType(ipiv,*n) * B; 77 B = PivotsType(ipiv,*n).transpose() * B; 83 B = PivotsType(ipiv,*n).transpose() * B; 86 ipiv[i]++;
|
/external/eigen/Eigen/src/LU/ |
D | PartialPivLU_MKL.h | 53 lapack_int m, n, lda, *ipiv, info; \ 59 ipiv = row_transpositions; \ 64 info = LAPACKE_##MKLPREFIX##getrf( matrix_order, m, n, (MKLTYPE*)a, lda, ipiv ); \ 66 for(int i=0;i<m;i++) { ipiv[i]--; if (ipiv[i]!=i) nb_transpositions++; } \
|
/external/eigen/bench/btl/libs/BLAS/ |
D | blas_interface.hh | 41 void sgetc2_(const int* n, float *a, const int *lda, int *ipiv, int *jpiv, int*info ); 42 void dgetc2_(const int* n, double *a, const int *lda, int *ipiv, int *jpiv, int*info );
|
D | blas_interface_impl.hh | 80 int * ipiv = (int*)alloca(sizeof(int)*N); in partial_lu_decomp() local 81 BLAS_FUNC(getrf)(&N, &N, C, &N, ipiv, &info); in partial_lu_decomp() 106 int * ipiv = (int*)alloca(sizeof(int)*N); in lu_decomp() local 108 BLAS_FUNC(getc2)(&N, C, &N, ipiv, jpiv, &info); in lu_decomp()
|