TR-mbed 1.0
Loading...
Searching...
No Matches
Product.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-2011 Gael Guennebaud <gael.guennebaud@inria.fr>
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_PRODUCT_H
11#define EIGEN_PRODUCT_H
12
13namespace Eigen {
14
15template<typename Lhs, typename Rhs, int Option, typename StorageKind> class ProductImpl;
16
17namespace internal {
18
19template<typename Lhs, typename Rhs, int Option>
21{
26
28
30 typedef typename product_promote_storage_type<typename LhsTraits::StorageKind,
31 typename RhsTraits::StorageKind,
33 typedef typename promote_index_type<typename LhsTraits::StorageIndex,
34 typename RhsTraits::StorageIndex>::type StorageIndex;
35
36 enum {
37 RowsAtCompileTime = LhsTraits::RowsAtCompileTime,
38 ColsAtCompileTime = RhsTraits::ColsAtCompileTime,
39 MaxRowsAtCompileTime = LhsTraits::MaxRowsAtCompileTime,
40 MaxColsAtCompileTime = RhsTraits::MaxColsAtCompileTime,
41
42 // FIXME: only needed by GeneralMatrixMatrixTriangular
43 InnerSize = EIGEN_SIZE_MIN_PREFER_FIXED(LhsTraits::ColsAtCompileTime, RhsTraits::RowsAtCompileTime),
44
45 // The storage order is somewhat arbitrary here. The correct one will be determined through the evaluator.
46 Flags = (MaxRowsAtCompileTime==1 && MaxColsAtCompileTime!=1) ? RowMajorBit
47 : (MaxColsAtCompileTime==1 && MaxRowsAtCompileTime!=1) ? 0
51 };
52};
53
54} // end namespace internal
55
70template<typename _Lhs, typename _Rhs, int Option>
71class Product : public ProductImpl<_Lhs,_Rhs,Option,
72 typename internal::product_promote_storage_type<typename internal::traits<_Lhs>::StorageKind,
73 typename internal::traits<_Rhs>::StorageKind,
74 internal::product_type<_Lhs,_Rhs>::ret>::ret>
75{
76 public:
77
78 typedef _Lhs Lhs;
79 typedef _Rhs Rhs;
80
81 typedef typename ProductImpl<
82 Lhs, Rhs, Option,
87
88 typedef typename internal::ref_selector<Lhs>::type LhsNested;
89 typedef typename internal::ref_selector<Rhs>::type RhsNested;
90 typedef typename internal::remove_all<LhsNested>::type LhsNestedCleaned;
91 typedef typename internal::remove_all<RhsNested>::type RhsNestedCleaned;
92
94 Product(const Lhs& lhs, const Rhs& rhs) : m_lhs(lhs), m_rhs(rhs)
95 {
96 eigen_assert(lhs.cols() == rhs.rows()
97 && "invalid matrix product"
98 && "if you wanted a coeff-wise or a dot product use the respective explicit functions");
99 }
100
102 Index rows() const EIGEN_NOEXCEPT { return m_lhs.rows(); }
104 Index cols() const EIGEN_NOEXCEPT { return m_rhs.cols(); }
105
107 const LhsNestedCleaned& lhs() const { return m_lhs; }
109 const RhsNestedCleaned& rhs() const { return m_rhs; }
110
111 protected:
112
115};
116
117namespace internal {
118
119template<typename Lhs, typename Rhs, int Option, int ProductTag = internal::product_type<Lhs,Rhs>::ret>
121 : public internal::dense_xpr_base<Product<Lhs,Rhs,Option> >::type
122{};
123
125template<typename Lhs, typename Rhs, int Option>
127 : public internal::dense_xpr_base<Product<Lhs,Rhs,Option> >::type
128{
130 typedef typename internal::dense_xpr_base<ProductXpr>::type Base;
131public:
132 using Base::derived;
133 typedef typename Base::Scalar Scalar;
134
136 {
137 return internal::evaluator<ProductXpr>(derived()).coeff(0,0);
138 }
139};
140
141} // namespace internal
142
143// Generic API dispatcher
144template<typename Lhs, typename Rhs, int Option, typename StorageKind>
145class ProductImpl : public internal::generic_xpr_base<Product<Lhs,Rhs,Option>, MatrixXpr, StorageKind>::type
146{
147 public:
149};
150
151template<typename Lhs, typename Rhs, int Option>
153 : public internal::dense_product_base<Lhs,Rhs,Option>
154{
156
157 public:
158
161 protected:
162 enum {
163 IsOneByOne = (RowsAtCompileTime == 1 || RowsAtCompileTime == Dynamic) &&
164 (ColsAtCompileTime == 1 || ColsAtCompileTime == Dynamic),
165 EnableCoeff = IsOneByOne || Option==LazyProduct
166 };
167
168 public:
169
171 {
172 EIGEN_STATIC_ASSERT(EnableCoeff, THIS_METHOD_IS_ONLY_FOR_INNER_OR_LAZY_PRODUCTS);
173 eigen_assert( (Option==LazyProduct) || (this->rows() == 1 && this->cols() == 1) );
174
175 return internal::evaluator<Derived>(derived()).coeff(row,col);
176 }
177
179 {
180 EIGEN_STATIC_ASSERT(EnableCoeff, THIS_METHOD_IS_ONLY_FOR_INNER_OR_LAZY_PRODUCTS);
181 eigen_assert( (Option==LazyProduct) || (this->rows() == 1 && this->cols() == 1) );
182
183 return internal::evaluator<Derived>(derived()).coeff(i);
184 }
185
186
187};
188
189} // end namespace Eigen
190
191#endif // EIGEN_PRODUCT_H
int i
Definition BiCGSTAB_step_by_step.cpp:9
#define EIGEN_GENERIC_PUBLIC_INTERFACE(Derived)
Definition Macros.h:1264
#define EIGEN_NOEXCEPT
Definition Macros.h:1418
#define EIGEN_CONSTEXPR
Definition Macros.h:787
#define EIGEN_DEVICE_FUNC
Definition Macros.h:976
#define EIGEN_DENSE_PUBLIC_INTERFACE(Derived)
Definition Macros.h:1283
#define eigen_assert(x)
Definition Macros.h:1037
#define EIGEN_STRONG_INLINE
Definition Macros.h:917
#define EIGEN_SIZE_MIN_PREFER_FIXED(a, b)
Definition Macros.h:1302
m col(1)
m row(1)
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition StaticAssert.h:127
int rows
Definition Tutorial_commainit_02.cpp:1
int cols
Definition Tutorial_commainit_02.cpp:1
SCALAR Scalar
Definition bench_gemm.cpp:46
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar coeff(Index i) const
Definition Product.h:178
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar coeff(Index row, Index col) const
Definition Product.h:170
internal::dense_product_base< Lhs, Rhs, Option > Base
Definition Product.h:159
Definition Product.h:146
internal::generic_xpr_base< Product< Lhs, Rhs, Option >, MatrixXpr, StorageKind >::type Base
Definition Product.h:148
Expression of the product of two arbitrary matrices or vectors.
Definition Product.h:75
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const LhsNestedCleaned & lhs() const
Definition Product.h:107
ProductImpl< Lhs, Rhs, Option, typenameinternal::product_promote_storage_type< typenameinternal::traits< Lhs >::StorageKind, typenameinternal::traits< Rhs >::StorageKind, internal::product_type< Lhs, Rhs >::ret >::ret >::Base Base
Definition Product.h:85
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const RhsNestedCleaned & rhs() const
Definition Product.h:109
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
Definition Product.h:104
_Lhs Lhs
Definition Product.h:78
RhsNested m_rhs
Definition Product.h:114
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
Definition Product.h:102
_Rhs Rhs
Definition Product.h:79
LhsNested m_lhs
Definition Product.h:113
Definition Product.h:122
const unsigned int NoPreferredStorageOrderBit
Definition Constants.h:178
const unsigned int RowMajorBit
Definition Constants.h:66
DenseIndex ret
Definition level1_cplx_impl.h:44
@ Lhs
Definition TensorContractionMapper.h:19
@ Rhs
Definition TensorContractionMapper.h:18
Namespace containing all symbols from the Eigen library.
Definition bench_norm.cpp:85
@ LazyProduct
Definition Constants.h:500
@ InnerProduct
Definition Constants.h:500
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
Definition BandTriangularSolver.h:13
Definition Constants.h:507
Definition Constants.h:522
Definition XprHelper.h:484
Definition XprHelper.h:501
Definition GeneralProduct.h:52
Definition XprHelper.h:121
promote_index_type< typenameLhsTraits::StorageIndex, typenameRhsTraits::StorageIndex >::type StorageIndex
Definition Product.h:34
traits< LhsCleaned > LhsTraits
Definition Product.h:24
traits< RhsCleaned > RhsTraits
Definition Product.h:25
remove_all< Lhs >::type LhsCleaned
Definition Product.h:22
remove_all< Rhs >::type RhsCleaned
Definition Product.h:23
ScalarBinaryOpTraits< typenametraits< LhsCleaned >::Scalar, typenametraits< RhsCleaned >::Scalar >::ReturnType Scalar
Definition Product.h:29
product_promote_storage_type< typenameLhsTraits::StorageKind, typenameRhsTraits::StorageKind, internal::product_type< Lhs, Rhs >::ret >::ret StorageKind
Definition Product.h:32
Definition ForwardDeclarations.h:17