/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU_kernel_bmod.h | 33 … BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lusup, Index& luptr, const Index lda, 39 … BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lusup, Index& luptr, const Index lda, in run() argument 56 luptr += lda * no_zeros + no_zeros; in run() 58 …ime,SegSizeAtCompileTime, ColMajor>, 0, OuterStride<> > A( &(lusup.data()[luptr]), segsize, segsiz… in run() 64 luptr += segsize; in run() 67 …mic,SegSizeAtCompileTime, ColMajor>, 0, OuterStride<> > B( &(lusup.data()[luptr]), nrow, segsize, … in run() 94 … /*segsize*/, BlockScalarVector& dense, ScalarVector& /*tempv*/, ScalarVector& lusup, Index& luptr, 100 … /*segsize*/, BlockScalarVector& dense, ScalarVector& /*tempv*/, ScalarVector& lusup, Index& luptr, 106 luptr += lda * no_zeros + no_zeros + 1; 107 const Scalar* a(lusup.data() + luptr);
|
D | SparseLU_panel_bmod.h | 65 Index luptr; // ... in panel_bmod() local 120 luptr = glu.xlusup(fsupc); in panel_bmod() 135 luptr = glu.xlusup(fsupc); in panel_bmod() 138 luptr += lda * no_zeros + no_zeros; in panel_bmod() 139 MappedMatrixBlock A(glu.lusup.data()+luptr, u_rows, u_rows, OuterStride<>(lda) ); in panel_bmod() 143 luptr += u_rows; in panel_bmod() 144 MappedMatrixBlock B(glu.lusup.data()+luptr, nrow, u_rows, OuterStride<>(lda) ); in panel_bmod() 202 luptr = glu.xlusup(fsupc); in panel_bmod() 209 …if(segsize==1) LU_kernel_bmod<1>::run(segsize, dense_col, tempv, glu.lusup, luptr, lda, nrow, glu… in panel_bmod() 210 …else if(segsize==2) LU_kernel_bmod<2>::run(segsize, dense_col, tempv, glu.lusup, luptr, lda, nro… in panel_bmod() [all …]
|
D | SparseLU_column_bmod.h | 58 Index fsupc, nsupc, nsupr, luptr, kfnz, no_zeros; in column_bmod() local 89 luptr = glu.xlusup(fst_col) + d_fsupc; in column_bmod() 106 …LU_kernel_bmod<1>::run(segsize, dense, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, no_zero… in column_bmod() 108 …LU_kernel_bmod<Dynamic>::run(segsize, dense, tempv, glu.lusup, luptr, lda, nrow, glu.lsub, lptr, n… in column_bmod() 158 luptr = glu.xlusup(fst_col) + d_fsupc; in column_bmod() 166 MappedMatrixBlock A( &(glu.lusup.data()[luptr]), nsupc, nsupc, OuterStride<>(lda) ); in column_bmod() 170 … new (&A) MappedMatrixBlock ( &(glu.lusup.data()[luptr+nsupc]), nrow, nsupc, OuterStride<>(lda) ); in column_bmod()
|
D | SparseLU_SupernodalMatrix.h | 272 Index luptr = colIndexPtr()[fsupc]; in solveInPlace() local 273 Index lda = colIndexPtr()[fsupc+1] - luptr; in solveInPlace() 276 …Map<const Matrix<Scalar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > A( &(Lval[luptr]), nsupc, n… in solveInPlace() 281 …nst Matrix<Scalar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > ( &(Lval[luptr+nsupc]), nrow, nsu… in solveInPlace() 335 Index luptr = colIndexPtr()[fsupc]; in solveTransposedInPlace() local 336 Index lda = colIndexPtr()[fsupc+1] - luptr; in solveTransposedInPlace() 351 …Map<const Matrix<Scalar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > A( &(Lval[luptr+nsupc]), nr… in solveTransposedInPlace() 359 …nst Matrix<Scalar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > ( &(Lval[luptr]), nsupc, nsupc, O… in solveTransposedInPlace()
|
D | SparseLU.h | 840 Index luptr = m_mapL.colIndexPtr()[fsupc]; in solveInPlace() local 846 X(fsupc, j) /= m_mapL.valuePtr()[luptr]; in solveInPlace() 852 …lar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > A( &(m_mapL.valuePtr()[luptr]), nsupc, nsupc, O… in solveInPlace() 883 Index luptr = m_mapL.colIndexPtr()[fsupc]; in solveTransposedInPlace() local 901 X(fsupc, j) /= (Conjugate? conj(m_mapL.valuePtr()[luptr]) : m_mapL.valuePtr()[luptr]); in solveTransposedInPlace() 906 …lar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > A( &(m_mapL.valuePtr()[luptr]), nsupc, nsupc, O… in solveTransposedInPlace()
|