31 #ifndef EIGEN_SPARSELU_MEMORY
32 #define EIGEN_SPARSELU_MEMORY
37 enum { LUNoMarker = 3 };
38 enum {emptyIdxLU = -1};
39 template<
typename Index>
40 inline Index LUnumTempV(Index& m, Index& w, Index& t, Index& b)
42 return (std::max)(m, (t+b)*w);
45 template<
typename Scalar,
typename Index>
46 inline Index LUTempSpace(Index&m, Index& w)
48 return (2*w + 4 + LUNoMarker) * m *
sizeof(Index) + (w + 1) * m *
sizeof(Scalar);
62 template <
typename Scalar,
typename Index>
63 template <
typename VectorType>
64 Index SparseLUImpl<Scalar,Index>::expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions)
70 if(num_expansions == 0 || keep_prev)
73 new_len = (std::max)(length+1,Index(alpha * length));
77 old_vec = vec.segment(0,nbElts);
80 #ifdef EIGEN_EXCEPTIONS
86 #ifdef EIGEN_EXCEPTIONS
87 catch(std::bad_alloc& )
109 alpha = (alpha + 1)/2;
110 new_len = (std::max)(length+1,Index(alpha * length));
111 #ifdef EIGEN_EXCEPTIONS
117 #ifdef EIGEN_EXCEPTIONS
118 catch(std::bad_alloc& )
124 if ( tries > 10)
return new_len;
126 }
while (!vec.size());
131 vec.segment(0, nbElts) = old_vec;
135 if(num_expansions) ++num_expansions;
151 template <
typename Scalar,
typename Index>
152 Index SparseLUImpl<Scalar,Index>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu)
154 Index& num_expansions = glu.num_expansions;
156 glu.nzumax = glu.nzlumax = (std::min)(fillratio * (annz+1) / n, m) * n;
157 glu.nzlmax = (std::max)(Index(4), fillratio) * (annz+1) / 4;
160 tempSpace = (2*panel_size + 4 + LUNoMarker) * m *
sizeof(Index) + (panel_size + 1) * m *
sizeof(Scalar);
161 if (lwork == emptyIdxLU)
163 Index estimated_size;
164 estimated_size = (5 * n + 5) *
sizeof(Index) + tempSpace
165 + (glu.nzlmax + glu.nzumax) *
sizeof(Index) + (glu.nzlumax+glu.nzumax) *
sizeof(Scalar) + n;
166 return estimated_size;
172 glu.xsup.resize(n+1);
173 glu.supno.resize(n+1);
174 glu.xlsub.resize(n+1);
175 glu.xlusup.resize(n+1);
176 glu.xusub.resize(n+1);
181 if( (expand<ScalarVector>(glu.lusup, glu.nzlumax, 0, 0, num_expansions)<0)
182 || (expand<ScalarVector>(glu.ucol, glu.nzumax, 0, 0, num_expansions)<0)
183 || (expand<IndexVector> (glu.lsub, glu.nzlmax, 0, 0, num_expansions)<0)
184 || (expand<IndexVector> (glu.usub, glu.nzumax, 0, 1, num_expansions)<0) )
190 if (glu.nzlumax < annz )
return glu.nzlumax;
192 }
while (!glu.lusup.size() || !glu.ucol.size() || !glu.lsub.size() || !glu.usub.size());
208 template <
typename Scalar,
typename Index>
209 template <
typename VectorType>
210 Index SparseLUImpl<Scalar,Index>::memXpand(VectorType& vec, Index& maxlen, Index nbElts, MemType memtype, Index& num_expansions)
214 failed_size = this->expand<VectorType>(vec, maxlen, nbElts, 1, num_expansions);
216 failed_size = this->expand<VectorType>(vec, maxlen, nbElts, 0, num_expansions);
227 #endif // EIGEN_SPARSELU_MEMORY