Searched defs:n_row (Results 1 - 3 of 3) sorted by relevance

/external/eigen/bench/
H A Dsparse_setter.cpp300 void coo_tocsr(const int n_row, argument
310 std::fill(Bp, Bp + n_row, 0);
317 for(int i = 0, cumsum = 0; i < n_row; i++){
322 Bp[n_row] = nnz;
335 for(int i = 0, last = 0; i <= n_row; i++){
351 void csr_sort_indices(const I n_row, argument
358 for(I i = 0; i < n_row; i++){
378 void csr_sum_duplicates(const I n_row, argument
386 for(I i = 0; i < n_row; i++){
/external/eigen/Eigen/src/OrderingMethods/
H A DEigen_Colamd.h189 the COLAMD_RECOMMENDED (nnz, n_row, n_col) macro. It returns -1 if any
191 indices of the matrix. colamd_c (n_col) + colamd_r (n_row) space is
206 inline IndexType colamd_r(IndexType n_row) argument
207 { return IndexType(((n_row) + 1) * sizeof (Colamd_Row<IndexType>) / sizeof (IndexType)); }
211 static IndexType init_rows_cols (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> col [], IndexType A [], IndexType p [], IndexType stats[COLAMD_STATS] );
214 static void init_scoring (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType head [], double knobs[COLAMD_KNOBS], IndexType *p_n_row2, IndexType *p_n_col2, IndexType *p_max_deg);
217 static IndexType find_ordering (IndexType n_row, IndexType n_col, IndexType Alen, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType head [], IndexType n_col2, IndexType max_deg, IndexType pfree);
226 static IndexType garbage_collection (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType *pfree) ;
229 static inline IndexType clear_mark (IndexType n_row, Colamd_Row<IndexType> Row [] ) ;
252 * \param n_row numbe
257 colamd_recommended( IndexType nnz, IndexType n_row, IndexType n_col) argument
322 colamd(IndexType n_row, IndexType n_col, IndexType Alen, IndexType *A, IndexType *p, double knobs[COLAMD_KNOBS], IndexType stats[COLAMD_STATS]) argument
482 init_rows_cols( IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType p [], IndexType stats [COLAMD_STATS] ) argument
698 init_scoring( IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType head [], double knobs [COLAMD_KNOBS], IndexType *p_n_row2, IndexType *p_n_col2, IndexType *p_max_deg ) argument
935 find_ordering( IndexType n_row, IndexType n_col, IndexType Alen, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType head [], IndexType n_col2, IndexType max_deg, IndexType pfree ) argument
1698 garbage_collection( IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType *pfree ) argument
1819 clear_mark( IndexType n_row, Colamd_Row<IndexType> Row [] ) argument
[all...]
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h56 inline int umfpack_symbolic(int n_row,int n_col, argument
60 return umfpack_di_symbolic(n_row,n_col,Ap,Ai,Ax,Symbolic,Control,Info);
63 inline int umfpack_symbolic(int n_row,int n_col, argument
67 return umfpack_zi_symbolic(n_row,n_col,Ap,Ai,&numext::real_ref(Ax[0]),0,Symbolic,Control,Info);
98 inline int umfpack_get_lunz(int *lnz, int *unz, int *n_row, int *n_col, int *nz_udiag, void *Numeric, double) argument
100 return umfpack_di_get_lunz(lnz,unz,n_row,n_col,nz_udiag,Numeric);
103 inline int umfpack_get_lunz(int *lnz, int *unz, int *n_row, int *n_col, int *nz_udiag, void *Numeric, std::complex<double>) argument
105 return umfpack_zi_get_lunz(lnz,unz,n_row,n_col,nz_udiag,Numeric);

Completed in 615 milliseconds