11 #ifndef SPARSELU_KERNEL_BMOD_H 12 #define SPARSELU_KERNEL_BMOD_H 33 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector,
typename Index>
34 static EIGEN_DONT_INLINE
void run(
const int segsize, BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lusup, Index& luptr,
const Index lda,
35 const Index nrow, IndexVector& lsub,
const Index lptr,
const Index no_zeros);
38 template <
int SegSizeAtCompileTime>
39 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector,
typename Index>
41 const Index nrow, IndexVector& lsub,
const Index lptr,
const Index no_zeros)
47 Index isub = lptr + no_zeros;
50 for (i = 0; i < ((SegSizeAtCompileTime==
Dynamic)?segsize:SegSizeAtCompileTime); i++)
53 tempv(i) = dense(irow);
57 luptr += lda * no_zeros + no_zeros;
62 u = A.template triangularView<UnitLower>().solve(u);
67 Index ldl = internal::first_multiple(nrow, PacketSize);
69 Index aligned_offset = internal::first_aligned(tempv.data()+segsize, PacketSize);
70 Index aligned_with_B_offset = (PacketSize-internal::first_aligned(B.
data(), PacketSize))%PacketSize;
74 internal::sparselu_gemm<Scalar>(l.rows(), l.cols(), B.cols(), B.
data(), B.outerStride(), u.data(), u.outerStride(), l.data(), l.outerStride());
77 isub = lptr + no_zeros;
78 for (i = 0; i < ((SegSizeAtCompileTime==
Dynamic)?segsize:SegSizeAtCompileTime); i++)
81 dense(irow) = tempv(i);
85 for (i = 0; i < nrow; i++)
94 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector,
typename Index>
95 static EIGEN_DONT_INLINE
void run(
const int , BlockScalarVector& dense, ScalarVector& , ScalarVector& lusup, Index& luptr,
96 const Index lda,
const Index nrow, IndexVector& lsub,
const Index lptr,
const Index no_zeros);
100 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector,
typename Index>
101 EIGEN_DONT_INLINE
void LU_kernel_bmod<1>::run(
const int , BlockScalarVector& dense, ScalarVector& , ScalarVector& lusup, Index& luptr,
102 const Index lda,
const Index nrow, IndexVector& lsub,
const Index lptr,
const Index no_zeros)
105 Scalar f = dense(lsub(lptr + no_zeros));
106 luptr += lda * no_zeros + no_zeros + 1;
107 const Scalar* a(lusup.data() + luptr);
108 const Index* irow(lsub.data()+lptr + no_zeros + 1);
110 for (; i+1 < nrow; i+=2)
112 Index i0 = *(irow++);
113 Index i1 = *(irow++);
116 Scalar d0 = dense.coeff(i0);
117 Scalar d1 = dense.coeff(i1);
120 dense.coeffRef(i0) = d0;
121 dense.coeffRef(i1) = d1;
124 dense.coeffRef(*(irow++)) -= f * *(a++);
130 #endif // SPARSELU_KERNEL_BMOD_H EIGEN_STRONG_INLINE const Scalar * data() const
Definition: PlainObjectBase.h:212
A matrix or vector expression mapping an existing array of data.
Definition: Map.h:104
iterative scaling algorithm to equilibrate rows and column norms in matrices
Definition: TestIMU_Common.h:87
Definition: GenericPacketMath.h:71
Performs numeric block updates from a given supernode to a single column.
Definition: SparseLU_kernel_bmod.h:31
Definition: BandTriangularSolver.h:13
const int Dynamic
This value means that a positive quantity (e.g., a size) is not known at compile-time, and that instead the value is stored in some runtime variable.
Definition: Constants.h:21
double Scalar
Common scalar type.
Definition: FlexibleKalmanBase.h:48