Eigen  3.4.1 (git rev 28ded8800c26864e537852658428ab44c8399e87)
 
Loading...
Searching...
No Matches
SparseLU_kernel_bmod.h
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2012 Désiré Nuentsa-Wakam <desire.nuentsa_wakam@inria.fr>
5// Copyright (C) 2012 Gael Guennebaud <gael.guennebaud@inria.fr>
6//
7// This Source Code Form is subject to the terms of the Mozilla
8// Public License v. 2.0. If a copy of the MPL was not distributed
9// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10
11#ifndef SPARSELU_KERNEL_BMOD_H
12#define SPARSELU_KERNEL_BMOD_H
13
14namespace Eigen {
15namespace internal {
16
17template <int SegSizeAtCompileTime> struct LU_kernel_bmod
18{
32 template <typename BlockScalarVector, typename ScalarVector, typename IndexVector>
33 static EIGEN_DONT_INLINE void run(const Index segsize, BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lusup, Index& luptr, const Index lda,
34 const Index nrow, IndexVector& lsub, const Index lptr, const Index no_zeros);
35};
36
37template <int SegSizeAtCompileTime>
38template <typename BlockScalarVector, typename ScalarVector, typename IndexVector>
39EIGEN_DONT_INLINE void LU_kernel_bmod<SegSizeAtCompileTime>::run(const Index segsize, BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lusup, Index& luptr, const Index lda,
40 const Index nrow, IndexVector& lsub, const Index lptr, const Index no_zeros)
41{
42 typedef typename ScalarVector::Scalar Scalar;
43 // First, copy U[*,j] segment from dense(*) to tempv(*)
44 // The result of triangular solve is in tempv[*];
45 // The result of matric-vector update is in dense[*]
46 Index isub = lptr + no_zeros;
47 Index i;
48 Index irow;
49 for (i = 0; i < ((SegSizeAtCompileTime==Dynamic)?segsize:SegSizeAtCompileTime); i++)
50 {
51 irow = lsub(isub);
52 tempv(i) = dense(irow);
53 ++isub;
54 }
55 // Dense triangular solve -- start effective triangle
56 luptr += lda * no_zeros + no_zeros;
57 // Form Eigen matrix and vector
58 Map<Matrix<Scalar,SegSizeAtCompileTime,SegSizeAtCompileTime, ColMajor>, 0, OuterStride<> > A( &(lusup.data()[luptr]), segsize, segsize, OuterStride<>(lda) );
59 Map<Matrix<Scalar,SegSizeAtCompileTime,1> > u(tempv.data(), segsize);
60
61 u = A.template triangularView<UnitLower>().solve(u);
62
63 // Dense matrix-vector product y <-- B*x
64 luptr += segsize;
65 const Index PacketSize = internal::packet_traits<Scalar>::size;
66 Index ldl = internal::first_multiple(nrow, PacketSize);
67 Map<Matrix<Scalar,Dynamic,SegSizeAtCompileTime, ColMajor>, 0, OuterStride<> > B( &(lusup.data()[luptr]), nrow, segsize, OuterStride<>(lda) );
68 Index aligned_offset = internal::first_default_aligned(tempv.data()+segsize, PacketSize);
69 Index aligned_with_B_offset = (PacketSize-internal::first_default_aligned(B.data(), PacketSize))%PacketSize;
70 Map<Matrix<Scalar,Dynamic,1>, 0, OuterStride<> > l(tempv.data()+segsize+aligned_offset+aligned_with_B_offset, nrow, OuterStride<>(ldl) );
71
72 l.noalias() = B * u;
73
74 // Scatter tempv[] into SPA dense[] as a temporary storage
75 isub = lptr + no_zeros;
76 for (i = 0; i < ((SegSizeAtCompileTime==Dynamic)?segsize:SegSizeAtCompileTime); i++)
77 {
78 irow = lsub(isub++);
79 dense(irow) = tempv(i);
80 }
81
82 // Scatter l into SPA dense[]
83 for (i = 0; i < nrow; i++)
84 {
85 irow = lsub(isub++);
86 dense(irow) -= l(i);
87 }
88}
89
90template <> struct LU_kernel_bmod<1>
91{
92 template <typename BlockScalarVector, typename ScalarVector, typename IndexVector>
93 static EIGEN_DONT_INLINE void run(const Index /*segsize*/, BlockScalarVector& dense, ScalarVector& /*tempv*/, ScalarVector& lusup, Index& luptr,
94 const Index lda, const Index nrow, IndexVector& lsub, const Index lptr, const Index no_zeros);
95};
96
97
98template <typename BlockScalarVector, typename ScalarVector, typename IndexVector>
99EIGEN_DONT_INLINE void LU_kernel_bmod<1>::run(const Index /*segsize*/, BlockScalarVector& dense, ScalarVector& /*tempv*/, ScalarVector& lusup, Index& luptr,
100 const Index lda, const Index nrow, IndexVector& lsub, const Index lptr, const Index no_zeros)
101{
102 typedef typename ScalarVector::Scalar Scalar;
103 typedef typename IndexVector::Scalar StorageIndex;
104 Scalar f = dense(lsub(lptr + no_zeros));
105 luptr += lda * no_zeros + no_zeros + 1;
106 const Scalar* a(lusup.data() + luptr);
107 const StorageIndex* irow(lsub.data()+lptr + no_zeros + 1);
108 Index i = 0;
109 for (; i+1 < nrow; i+=2)
110 {
111 Index i0 = *(irow++);
112 Index i1 = *(irow++);
113 Scalar a0 = *(a++);
114 Scalar a1 = *(a++);
115 Scalar d0 = dense.coeff(i0);
116 Scalar d1 = dense.coeff(i1);
117 d0 -= f*a0;
118 d1 -= f*a1;
119 dense.coeffRef(i0) = d0;
120 dense.coeffRef(i1) = d1;
121 }
122 if(i<nrow)
123 dense.coeffRef(*(irow++)) -= f * *(a++);
124}
125
126} // end namespace internal
127
128} // end namespace Eigen
129#endif // SPARSELU_KERNEL_BMOD_H
Namespace containing all symbols from the Eigen library.
Definition B01_Experimental.dox:1
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition Meta.h:74
const int Dynamic
Definition Constants.h:22