CwiseBinaryOp.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) 2008-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
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 EIGEN_CWISE_BINARY_OP_H
12 #define EIGEN_CWISE_BINARY_OP_H
13 
14 namespace Eigen {
15 
16 namespace internal {
17 template<typename BinaryOp, typename Lhs, typename Rhs>
18 struct traits<CwiseBinaryOp<BinaryOp, Lhs, Rhs> >
19 {
20  // we must not inherit from traits<Lhs> since it has
21  // the potential to cause problems with MSVC
22  typedef typename remove_all<Lhs>::type Ancestor;
24  enum {
29  };
30 
31  // even though we require Lhs and Rhs to have the same scalar type (see CwiseBinaryOp constructor),
32  // we still want to handle the case when the result type is different.
33  typedef typename result_of<
34  BinaryOp(
35  const typename Lhs::Scalar&,
36  const typename Rhs::Scalar&
37  )
40  typename traits<Rhs>::StorageKind,
41  BinaryOp>::ret StorageKind;
44  typedef typename Lhs::Nested LhsNested;
45  typedef typename Rhs::Nested RhsNested;
48  enum {
49  Flags = cwise_promote_storage_order<typename traits<Lhs>::StorageKind,typename traits<Rhs>::StorageKind,_LhsNested::Flags & RowMajorBit,_RhsNested::Flags & RowMajorBit>::value
50  };
51 };
52 } // end namespace internal
53 
54 template<typename BinaryOp, typename Lhs, typename Rhs, typename StorageKind>
56 
76 template<typename BinaryOp, typename LhsType, typename RhsType>
78  public CwiseBinaryOpImpl<
79  BinaryOp, LhsType, RhsType,
80  typename internal::cwise_promote_storage_type<typename internal::traits<LhsType>::StorageKind,
81  typename internal::traits<RhsType>::StorageKind,
82  BinaryOp>::ret>,
84 {
85  public:
86 
90 
91  typedef typename CwiseBinaryOpImpl<
92  BinaryOp, LhsType, RhsType,
95  BinaryOp>::ret>::Base Base;
97 
98  typedef typename internal::ref_selector<LhsType>::type LhsNested;
99  typedef typename internal::ref_selector<RhsType>::type RhsNested;
100  typedef typename internal::remove_reference<LhsNested>::type _LhsNested;
101  typedef typename internal::remove_reference<RhsNested>::type _RhsNested;
102 
103 #if EIGEN_COMP_MSVC && EIGEN_HAS_CXX11
104  //Required for Visual Studio or the Copy constructor will probably not get inlined!
107 #endif
108 
110  CwiseBinaryOp(const Lhs& aLhs, const Rhs& aRhs, const BinaryOp& func = BinaryOp())
111  : m_lhs(aLhs), m_rhs(aRhs), m_functor(func)
112  {
113  EIGEN_CHECK_BINARY_COMPATIBILIY(BinaryOp,typename Lhs::Scalar,typename Rhs::Scalar);
114  // require the sizes to match
116  eigen_assert(aLhs.rows() == aRhs.rows() && aLhs.cols() == aRhs.cols());
117  }
118 
121  // return the fixed size type if available to enable compile time optimizations
122  return internal::traits<typename internal::remove_all<LhsNested>::type>::RowsAtCompileTime==Dynamic ? m_rhs.rows() : m_lhs.rows();
123  }
126  // return the fixed size type if available to enable compile time optimizations
127  return internal::traits<typename internal::remove_all<LhsNested>::type>::ColsAtCompileTime==Dynamic ? m_rhs.cols() : m_lhs.cols();
128  }
129 
132  const _LhsNested& lhs() const { return m_lhs; }
135  const _RhsNested& rhs() const { return m_rhs; }
138  const BinaryOp& functor() const { return m_functor; }
139 
140  protected:
141  LhsNested m_lhs;
142  RhsNested m_rhs;
143  const BinaryOp m_functor;
144 };
145 
146 // Generic API dispatcher
147 template<typename BinaryOp, typename Lhs, typename Rhs, typename StorageKind>
148 class CwiseBinaryOpImpl
149  : public internal::generic_xpr_base<CwiseBinaryOp<BinaryOp, Lhs, Rhs> >::type
150 {
151 public:
153 };
154 
159 template<typename Derived>
160 template<typename OtherDerived>
163 {
165  return derived();
166 }
167 
172 template<typename Derived>
173 template<typename OtherDerived>
176 {
178  return derived();
179 }
180 
181 } // end namespace Eigen
182 
183 #endif // EIGEN_CWISE_BINARY_OP_H
cwise_promote_storage_type< typename traits< Lhs >::StorageKind, typename traits< Rhs >::StorageKind, BinaryOp >::ret StorageKind
Definition: CwiseBinaryOp.h:41
SCALAR Scalar
Definition: bench_gemm.cpp:46
#define EIGEN_GENERIC_PUBLIC_INTERFACE(Derived)
Definition: Macros.h:1264
#define EIGEN_STRONG_INLINE
Definition: Macros.h:917
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const _RhsNested & rhs() const
internal::remove_all< LhsType >::type Lhs
Definition: CwiseBinaryOp.h:88
Namespace containing all symbols from the Eigen library.
Definition: jet.h:637
CwiseBinaryOpImpl< BinaryOp, LhsType, RhsType, typename internal::cwise_promote_storage_type< typename internal::traits< LhsType >::StorageKind, typename internal::traits< Rhs >::StorageKind, BinaryOp >::ret >::Base Base
Definition: CwiseBinaryOp.h:95
const unsigned int RowMajorBit
Definition: Constants.h:66
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator-=(const MatrixBase< OtherDerived > &other)
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
internal::generic_xpr_base< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >::type Base
promote_index_type< typename traits< Lhs >::StorageIndex, typename traits< Rhs >::StorageIndex >::type StorageIndex
Definition: CwiseBinaryOp.h:43
internal::remove_all< BinaryOp >::type Functor
Definition: CwiseBinaryOp.h:87
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Definition: CwiseBinaryOp.h:77
result_of< BinaryOp(const typename Lhs::Scalar &, const typename Rhs::Scalar &) >::type Scalar
Definition: CwiseBinaryOp.h:38
#define EIGEN_NOEXCEPT
Definition: Macros.h:1418
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74
#define eigen_assert(x)
Definition: Macros.h:1037
const BinaryOp m_functor
#define EIGEN_CONSTEXPR
Definition: Macros.h:787
DenseIndex ret
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const _LhsNested & lhs() const
#define EIGEN_DEVICE_FUNC
Definition: Macros.h:976
#define EIGEN_CHECK_BINARY_COMPATIBILIY(BINOP, LHS, RHS)
Definition: XprHelper.h:850
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const BinaryOp & functor() const
const int Dynamic
Definition: Constants.h:22
Generic expression where a coefficient-wise unary operator is applied to an expression.
Definition: CwiseUnaryOp.h:55
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CwiseBinaryOp(const Lhs &aLhs, const Rhs &aRhs, const BinaryOp &func=BinaryOp())
Base class for all dense matrices, vectors, and expressions.
Definition: MatrixBase.h:48
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void call_assignment(Dst &dst, const Src &src)
Definition: pytypes.h:1370
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator+=(const MatrixBase< OtherDerived > &other)
internal::remove_all< RhsType >::type Rhs
Definition: CwiseBinaryOp.h:89
#define EIGEN_STATIC_ASSERT_SAME_MATRIX_SIZE(TYPE0, TYPE1)
Definition: StaticAssert.h:192


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:34:06