Rank2Update.h
Go to the documentation of this file.
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2012 Chen-Pang He <jdh8@ms63.hinet.net>
5 //
6 // This Source Code Form is subject to the terms of the Mozilla
7 // Public License v. 2.0. If a copy of the MPL was not distributed
8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 
10 #ifndef EIGEN_RANK2UPDATE_H
11 #define EIGEN_RANK2UPDATE_H
12 
13 namespace internal {
14 
15 /* Optimized selfadjoint matrix += alpha * uv' + conj(alpha)*vu'
16  * This is the low-level version of SelfadjointRank2Update.h
17  */
18 template<typename Scalar, typename Index, int UpLo>
20 {
21  static void run(Index size, Scalar* mat, Index stride, const Scalar* u, const Scalar* v, Scalar alpha)
22  {
23  typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap;
24  for (Index i=0; i<size; ++i)
25  {
26  Map<Matrix<Scalar,Dynamic,1> >(mat+stride*i+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1)) +=
27  numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1))
28  + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1));
29  }
30  }
31 };
32 
33 /* Optimized selfadjoint matrix += alpha * uv' + conj(alpha)*vu'
34  * The matrix is in packed form.
35  */
36 template<typename Scalar, typename Index, int UpLo>
38 {
39  static void run(Index size, Scalar* mat, const Scalar* u, const Scalar* v, Scalar alpha)
40  {
41  typedef Map<const Matrix<Scalar,Dynamic,1> > OtherMap;
42  Index offset = 0;
43  for (Index i=0; i<size; ++i)
44  {
45  Map<Matrix<Scalar,Dynamic,1> >(mat+offset, UpLo==Lower ? size-i : (i+1)) +=
46  numext::conj(alpha) * numext::conj(u[i]) * OtherMap(v+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1))
47  + alpha * numext::conj(v[i]) * OtherMap(u+(UpLo==Lower ? i : 0), UpLo==Lower ? size-i : (i+1));
48  //FIXME This should be handled outside.
49  mat[offset+(UpLo==Lower ? 0 : i)] = numext::real(mat[offset+(UpLo==Lower ? 0 : i)]);
50  offset += UpLo==Lower ? size-i : (i+1);
51  }
52  }
53 };
54 
55 } // end namespace internal
56 
57 #endif // EIGEN_RANK2UPDATE_H
Eigen::conj
const AutoDiffScalar< DerType > & conj(const AutoDiffScalar< DerType > &x)
Definition: AutoDiffScalar.h:543
alpha
RealScalar alpha
Definition: level1_cplx_impl.h:125
real
float real
Definition: datatypes.h:10
internal::rank2_update_selector
Definition: Rank2Update.h:19
Scalar
SCALAR Scalar
Definition: common.h:84
internal::packed_rank2_update_selector::run
static void run(Index size, Scalar *mat, const Scalar *u, const Scalar *v, Scalar alpha)
Definition: Rank2Update.h:39
Eigen::Lower
@ Lower
Definition: Constants.h:204
internal::packed_rank2_update_selector
Definition: Rank2Update.h:37
utility::tuple::size
static constexpr size_t size(Tuple< Args... > &)
Provides access to the number of elements in a tuple as a compile-time constant expression.
Definition: TensorSyclTuple.h:143
internal::rank2_update_selector::run
static void run(Index size, Scalar *mat, Index stride, const Scalar *u, const Scalar *v, Scalar alpha)
Definition: Rank2Update.h:21
internal
Definition: BandTriangularSolver.h:13
mat
else mat
Definition: eigenvalues.cpp:43
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:08