OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ipiv
(Results
1 - 4
of
4
) sorted by null
/external/eigen/lapack/
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
, RealScalar *pb, int *ldb, int *info))
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/
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/
blas_interface.hh
38
// void dgetrf_( int *m, int *n, double *a, int *lda, int *
ipiv
, int *info );
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 );
blas_interface_impl.hh
80
int *
ipiv
= (int*)alloca(sizeof(int)*N);
local
81
BLAS_FUNC(getrf)(&N, &N, C, &N,
ipiv
, &info);
106
int *
ipiv
= (int*)alloca(sizeof(int)*N);
local
108
BLAS_FUNC(getc2)(&N, C, &N,
ipiv
, jpiv, &info);
Completed in 28 milliseconds