HomeSort by relevance Sort by last modified time
    Searched defs:luptr (Results 1 - 4 of 4) sorted by null

  /external/eigen/Eigen/src/SparseLU/
SparseLU_column_bmod.h 57 Index fsupc, nsupc, nsupr, luptr, kfnz, no_zeros; local
62 * luptr = location of supernodal LU-block in storage
88 luptr = glu.xlusup(fst_col) + d_fsupc;
105 LU_kernel_bmod<1>::run(segsize, dense, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zeros);
107 LU_kernel_bmod<Dynamic>::run(segsize, dense, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zeros);
157 luptr = glu.xlusup(fst_col) + d_fsupc;
165 Map<Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > A( &(glu.lusup.data()[luptr]), nsupc, nsupc, OuterStride<>(lda) );
169 new (&A) Map<Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > ( &(glu.lusup.data()[luptr+nsupc]), nrow, nsupc, OuterStride<>(lda) );
SparseLU_panel_bmod.h 65 Index luptr; // ... local
120 luptr = glu.xlusup(fsupc);
135 luptr = glu.xlusup(fsupc);
138 luptr += lda * no_zeros + no_zeros;
139 Map<Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > A(glu.lusup.data()+luptr, u_rows, u_rows, OuterStride<>(lda) );
143 luptr += u_rows;
144 Map<Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > B(glu.lusup.data()+luptr, nrow, u_rows, OuterStride<>(lda) );
202 luptr = glu.xlusup(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)
    [all...]
SparseLU_SupernodalMatrix.h 266 Index luptr = colIndexPtr()[fsupc]; local
267 Index lda = colIndexPtr()[fsupc+1] - luptr;
270 Map<const Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > A( &(Lval[luptr]), nsupc, nsupc, OuterStride<>(lda) );
275 new (&A) Map<const Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > ( &(Lval[luptr+nsupc]), nrow, nsupc, OuterStride<>(lda) );
SparseLU.h 692 Index luptr = m_mapL.colIndexPtr()[fsupc]; local
698 X(fsupc, j) /= m_mapL.valuePtr()[luptr];
703 Map<const Matrix<Scalar,Dynamic,Dynamic>, 0, OuterStride<> > A( &(m_mapL.valuePtr()[luptr]), nsupc, nsupc, OuterStride<>(lda) );

Completed in 80 milliseconds