11 #ifndef SPARSELU_KERNEL_BMOD_H 12 #define SPARSELU_KERNEL_BMOD_H 32 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector>
34 const Index nrow, IndexVector& lsub,
const Index lptr,
const Index no_zeros);
37 template <
int SegSizeAtCompileTime>
38 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector>
40 const Index nrow, IndexVector& lsub,
const Index lptr,
const Index no_zeros)
42 typedef typename ScalarVector::Scalar Scalar;
46 Index isub = lptr + no_zeros;
49 for (i = 0; i < ((SegSizeAtCompileTime==
Dynamic)?segsize:SegSizeAtCompileTime); i++)
52 tempv(i) = dense(irow);
56 luptr += lda * no_zeros + no_zeros;
61 u =
A.template triangularView<UnitLower>().solve(u);
76 isub = lptr + no_zeros;
77 for (i = 0; i < ((SegSizeAtCompileTime==
Dynamic)?segsize:SegSizeAtCompileTime); i++)
80 dense(irow) = tempv(i);
84 for (i = 0; i < nrow; i++)
93 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector>
99 template <
typename BlockScalarVector,
typename ScalarVector,
typename IndexVector>
103 typedef typename ScalarVector::Scalar Scalar;
104 typedef typename IndexVector::Scalar StorageIndex;
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 StorageIndex* 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 A matrix or vector expression mapping an existing array of data.
static int f(const TensorMap< Tensor< int, 3 > > &tensor)
static EIGEN_DONT_INLINE void run(const Index segsize, BlockScalarVector &dense, ScalarVector &tempv, ScalarVector &lusup, Index &luptr, const Index lda, const Index nrow, IndexVector &lsub, const Index lptr, const Index no_zeros)
#define EIGEN_DONT_INLINE
static Index first_default_aligned(const DenseBase< Derived > &m)
Index first_multiple(Index size, Index base)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
EIGEN_DEVICE_FUNC Index outerStride() const
Convenience specialization of Stride to specify only an outer stride See class Map for some examples...