31 #ifndef SPARSELU_PANEL_BMOD_H
32 #define SPARSELU_PANEL_BMOD_H
55 template <
typename Scalar,
typename Index>
56 void SparseLUImpl<Scalar,Index>::panel_bmod(
const Index m,
const Index w,
const Index jcol,
57 const Index nseg, ScalarVector& dense, ScalarVector& tempv,
58 IndexVector& segrep, IndexVector& repfnz, GlobalLU_t& glu)
61 Index ksub,jj,nextl_col;
62 Index fsupc, nsupc, nsupr, nrow;
66 Index segsize,no_zeros ;
69 const Index PacketSize = internal::packet_traits<Scalar>::size;
71 for (ksub = 0; ksub < nseg; ksub++)
78 krep = segrep(k); k--;
79 fsupc = glu.xsup(glu.supno(krep));
80 nsupc = krep - fsupc + 1;
81 nsupr = glu.xlsub(fsupc+1) - glu.xlsub(fsupc);
83 lptr = glu.xlsub(fsupc);
88 for (jj = jcol; jj < jcol + w; jj++)
90 nextl_col = (jj-jcol) * m;
91 VectorBlock<IndexVector> repfnz_col(repfnz, nextl_col, m);
93 kfnz = repfnz_col(krep);
94 if ( kfnz == emptyIdxLU )
97 segsize = krep - kfnz + 1;
99 u_rows = (std::max)(segsize,u_rows);
104 Index ldu = internal::first_multiple<Index>(u_rows, PacketSize);
105 Map<ScalarMatrix, Aligned, OuterStride<> > U(tempv.data(), u_rows, u_cols, OuterStride<>(ldu));
109 for (jj = jcol; jj < jcol + w; jj++)
111 nextl_col = (jj-jcol) * m;
112 VectorBlock<IndexVector> repfnz_col(repfnz, nextl_col, m);
113 VectorBlock<ScalarVector> dense_col(dense, nextl_col, m);
115 kfnz = repfnz_col(krep);
116 if ( kfnz == emptyIdxLU )
119 segsize = krep - kfnz + 1;
120 luptr = glu.xlusup(fsupc);
121 no_zeros = kfnz - fsupc;
123 Index isub = lptr + no_zeros;
124 Index off = u_rows-segsize;
125 for (Index i = 0; i < off; i++) U(i,u_col) = 0;
126 for (Index i = 0; i < segsize; i++)
128 Index irow = glu.lsub(isub);
129 U(i+off,u_col) = dense_col(irow);
135 luptr = glu.xlusup(fsupc);
136 Index lda = glu.xlusup(fsupc+1) - glu.xlusup(fsupc);
137 no_zeros = (krep - u_rows + 1) - fsupc;
138 luptr += lda * no_zeros + no_zeros;
139 MappedMatrixBlock A(glu.lusup.data()+luptr, u_rows, u_rows, OuterStride<>(lda) );
140 U = A.template triangularView<UnitLower>().solve(U);
144 MappedMatrixBlock B(glu.lusup.data()+luptr, nrow, u_rows, OuterStride<>(lda) );
145 eigen_assert(tempv.size()>w*ldu + nrow*w + 1);
147 Index ldl = internal::first_multiple<Index>(nrow, PacketSize);
148 Index offset = (PacketSize-internal::first_aligned(B.data(), PacketSize)) % PacketSize;
149 MappedMatrixBlock L(tempv.data()+w*ldu+offset, nrow, u_cols, OuterStride<>(ldl));
152 internal::sparselu_gemm<Scalar>(L.rows(), L.cols(), B.cols(), B.data(), B.outerStride(), U.data(), U.outerStride(), L.data(), L.outerStride());
156 for (jj = jcol; jj < jcol + w; jj++)
158 nextl_col = (jj-jcol) * m;
159 VectorBlock<IndexVector> repfnz_col(repfnz, nextl_col, m);
160 VectorBlock<ScalarVector> dense_col(dense, nextl_col, m);
162 kfnz = repfnz_col(krep);
163 if ( kfnz == emptyIdxLU )
166 segsize = krep - kfnz + 1;
167 no_zeros = kfnz - fsupc;
168 Index isub = lptr + no_zeros;
170 Index off = u_rows-segsize;
171 for (Index i = 0; i < segsize; i++)
173 Index irow = glu.lsub(isub++);
174 dense_col(irow) = U.coeff(i+off,u_col);
175 U.coeffRef(i+off,u_col) = 0;
179 for (Index i = 0; i < nrow; i++)
181 Index irow = glu.lsub(isub++);
182 dense_col(irow) -= L.coeff(i,u_col);
183 L.coeffRef(i,u_col) = 0;
191 for (jj = jcol; jj < jcol + w; jj++)
193 nextl_col = (jj-jcol) * m;
194 VectorBlock<IndexVector> repfnz_col(repfnz, nextl_col, m);
195 VectorBlock<ScalarVector> dense_col(dense, nextl_col, m);
197 kfnz = repfnz_col(krep);
198 if ( kfnz == emptyIdxLU )
201 segsize = krep - kfnz + 1;
202 luptr = glu.xlusup(fsupc);
204 Index lda = glu.xlusup(fsupc+1)-glu.xlusup(fsupc);
208 no_zeros = kfnz - fsupc;
209 if(segsize==1) LU_kernel_bmod<1>::run(segsize, dense_col, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zeros);
210 else if(segsize==2) LU_kernel_bmod<2>::run(segsize, dense_col, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zeros);
211 else if(segsize==3) LU_kernel_bmod<3>::run(segsize, dense_col, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zeros);
212 else LU_kernel_bmod<Dynamic>::run(segsize, dense_col, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zeros);
223 #endif // SPARSELU_PANEL_BMOD_H