Home
last modified time | relevance | path

Searched refs:num_expansions (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/SparseLU/
DSparseLU_Memory.h63 …dex>::expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions) in expand() argument
69 if(num_expansions == 0 || keep_prev) in expand()
91 if (!num_expansions) in expand()
134 if(num_expansions) ++num_expansions; in expand()
153 Index& num_expansions = glu.num_expansions; //No memory expansions so far in memInit() local
154 num_expansions = 0; in memInit()
180 if( (expand<ScalarVector>(glu.lusup, glu.nzlumax, 0, 0, num_expansions)<0) in memInit()
181 || (expand<ScalarVector>(glu.ucol, glu.nzumax, 0, 0, num_expansions)<0) in memInit()
182 || (expand<IndexVector> (glu.lsub, glu.nzlmax, 0, 0, num_expansions)<0) in memInit()
183 || (expand<IndexVector> (glu.usub, glu.nzumax, 0, 1, num_expansions)<0) ) in memInit()
[all …]
DSparseLU_copy_to_ucol.h78 mem = memXpand<ScalarVector>(glu.ucol, glu.nzumax, nextu, UCOL, glu.num_expansions); in copy_to_ucol()
80 mem = memXpand<IndexVector>(glu.usub, glu.nzumax, nextu, USUB, glu.num_expansions); in copy_to_ucol()
DSparseLUImpl.h35 …Index expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions);
38 …dex memXpand(VectorType& vec, Index& maxlen, Index nbElts, MemType memtype, Index& num_expansions);
DSparseLU_Structs.h92 Index num_expansions; member
DSparseLU_column_dfs.h53 m_luImpl.memXpand(lsub, m_glu.nzlmax, nextl, LSUB, m_glu.num_expansions); in mem_expand()
DSparseLU_column_bmod.h124 mem = memXpand<ScalarVector>(glu.lusup, glu.nzlumax, nextlu, LUSUP, glu.num_expansions); in column_bmod()