11 #ifndef EIGEN_COEFFBASED_PRODUCT_H
12 #define EIGEN_COEFFBASED_PRODUCT_H
31 template<
int Traversal,
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename RetScalar>
32 struct product_coeff_impl;
34 template<
int StorageOrder,
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
35 struct product_packet_impl;
37 template<
typename LhsNested,
typename RhsNested,
int NestingFlags>
38 struct traits<CoeffBasedProduct<LhsNested,RhsNested,NestingFlags> >
40 typedef MatrixXpr XprKind;
41 typedef typename remove_all<LhsNested>::type _LhsNested;
42 typedef typename remove_all<RhsNested>::type _RhsNested;
43 typedef typename scalar_product_traits<typename _LhsNested::Scalar, typename _RhsNested::Scalar>::ReturnType Scalar;
44 typedef typename promote_storage_type<typename traits<_LhsNested>::StorageKind,
45 typename traits<_RhsNested>::StorageKind>::ret StorageKind;
46 typedef typename promote_index_type<typename traits<_LhsNested>::Index,
47 typename traits<_RhsNested>::Index>::type Index;
50 LhsCoeffReadCost = _LhsNested::CoeffReadCost,
51 RhsCoeffReadCost = _RhsNested::CoeffReadCost,
52 LhsFlags = _LhsNested::Flags,
53 RhsFlags = _RhsNested::Flags,
55 RowsAtCompileTime = _LhsNested::RowsAtCompileTime,
56 ColsAtCompileTime = _RhsNested::ColsAtCompileTime,
57 InnerSize = EIGEN_SIZE_MIN_PREFER_FIXED(_LhsNested::ColsAtCompileTime, _RhsNested::RowsAtCompileTime),
59 MaxRowsAtCompileTime = _LhsNested::MaxRowsAtCompileTime,
60 MaxColsAtCompileTime = _RhsNested::MaxColsAtCompileTime,
65 SameType = is_same<typename _LhsNested::Scalar,typename _RhsNested::Scalar>::value,
68 && (ColsAtCompileTime ==
Dynamic
69 || ( (ColsAtCompileTime % packet_traits<Scalar>::size) == 0
75 && (RowsAtCompileTime ==
Dynamic
76 || ( (RowsAtCompileTime % packet_traits<Scalar>::size) == 0
81 EvalToRowMajor = (MaxRowsAtCompileTime==1&&MaxColsAtCompileTime!=1) ? 1
82 : (MaxColsAtCompileTime==1&&MaxRowsAtCompileTime!=1) ? 0
83 : (RhsRowMajor && !CanVectorizeLhs),
85 Flags = ((
unsigned int)(LhsFlags | RhsFlags) & HereditaryBits & ~RowMajorBit)
86 | (EvalToRowMajor ? RowMajorBit : 0)
90 | (SameType && (CanVectorizeLhs || CanVectorizeRhs) ?
PacketAccessBit : 0),
94 : InnerSize * (NumTraits<Scalar>::MulCost + LhsCoeffReadCost + RhsCoeffReadCost)
95 + (InnerSize - 1) * NumTraits<Scalar>::AddCost,
102 CanVectorizeInner = SameType
107 && (InnerSize % packet_traits<Scalar>::size == 0)
113 template<
typename LhsNested,
typename RhsNested,
int NestingFlags>
114 class CoeffBasedProduct
115 : internal::no_assignment_operator,
116 public MatrixBase<CoeffBasedProduct<LhsNested, RhsNested, NestingFlags> >
120 typedef MatrixBase<CoeffBasedProduct> Base;
121 EIGEN_DENSE_PUBLIC_INTERFACE(CoeffBasedProduct)
122 typedef typename Base::PlainObject PlainObject;
126 typedef typename internal::traits<CoeffBasedProduct>::_LhsNested _LhsNested;
127 typedef typename internal::traits<CoeffBasedProduct>::_RhsNested _RhsNested;
130 PacketSize = internal::packet_traits<Scalar>::size,
131 InnerSize = internal::traits<CoeffBasedProduct>::InnerSize,
132 Unroll = CoeffReadCost !=
Dynamic && CoeffReadCost <= EIGEN_UNROLLING_LIMIT,
133 CanVectorizeInner = internal::traits<CoeffBasedProduct>::CanVectorizeInner
136 typedef internal::product_coeff_impl<CanVectorizeInner ? InnerVectorizedTraversal : DefaultTraversal,
138 _LhsNested, _RhsNested, Scalar> ScalarCoeffImpl;
140 typedef CoeffBasedProduct<LhsNested,RhsNested,NestByRefBit> LazyCoeffBasedProductType;
144 inline CoeffBasedProduct(
const CoeffBasedProduct& other)
145 : Base(), m_lhs(other.m_lhs), m_rhs(other.m_rhs)
148 template<
typename Lhs,
typename Rhs>
149 inline CoeffBasedProduct(
const Lhs& lhs,
const Rhs& rhs)
150 : m_lhs(lhs), m_rhs(rhs)
154 EIGEN_STATIC_ASSERT((internal::scalar_product_traits<typename Lhs::RealScalar, typename Rhs::RealScalar>::Defined),
155 YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY)
156 eigen_assert(lhs.cols() == rhs.rows()
157 && "invalid matrix product"
158 && "if you wanted a coeff-wise or a dot product use the respective explicit functions");
161 EIGEN_STRONG_INLINE Index rows()
const {
return m_lhs.rows(); }
162 EIGEN_STRONG_INLINE Index cols()
const {
return m_rhs.cols(); }
164 EIGEN_STRONG_INLINE
const Scalar coeff(Index row, Index col)
const
167 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
174 EIGEN_STRONG_INLINE
const Scalar coeff(Index index)
const
177 const Index row = RowsAtCompileTime == 1 ? 0 : index;
178 const Index col = RowsAtCompileTime == 1 ? index : 0;
179 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
183 template<
int LoadMode>
184 EIGEN_STRONG_INLINE
const PacketScalar packet(Index row, Index col)
const
189 _LhsNested, _RhsNested, PacketScalar, LoadMode>
190 ::run(row, col, m_lhs, m_rhs, res);
195 EIGEN_STRONG_INLINE
operator const PlainObject& ()
const
197 m_result.lazyAssign(*
this);
201 const _LhsNested& lhs()
const {
return m_lhs; }
202 const _RhsNested& rhs()
const {
return m_rhs; }
204 const Diagonal<const LazyCoeffBasedProductType,0> diagonal()
const
205 {
return reinterpret_cast<const LazyCoeffBasedProductType&
>(*this); }
207 template<
int DiagonalIndex>
208 const Diagonal<const LazyCoeffBasedProductType,DiagonalIndex> diagonal()
const
209 {
return reinterpret_cast<const LazyCoeffBasedProductType&
>(*this); }
211 const Diagonal<const LazyCoeffBasedProductType,Dynamic> diagonal(Index index)
const
212 {
return reinterpret_cast<const LazyCoeffBasedProductType&
>(*this).diagonal(index); }
215 typename internal::add_const_on_value_type<LhsNested>::type m_lhs;
216 typename internal::add_const_on_value_type<RhsNested>::type m_rhs;
218 mutable PlainObject m_result;
225 template<
typename Lhs,
typename Rhs,
int N,
typename PlainObject>
228 typedef PlainObject
const& type;
239 template<
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename RetScalar>
240 struct product_coeff_impl<DefaultTraversal, UnrollingIndex, Lhs, Rhs, RetScalar>
242 typedef typename Lhs::Index Index;
243 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, RetScalar &res)
245 product_coeff_impl<DefaultTraversal, UnrollingIndex-1, Lhs, Rhs, RetScalar>::run(row, col, lhs, rhs, res);
246 res += lhs.coeff(row, UnrollingIndex-1) * rhs.coeff(UnrollingIndex-1, col);
250 template<
typename Lhs,
typename Rhs,
typename RetScalar>
251 struct product_coeff_impl<DefaultTraversal, 1, Lhs, Rhs, RetScalar>
253 typedef typename Lhs::Index Index;
254 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, RetScalar &res)
256 res = lhs.coeff(row, 0) * rhs.coeff(0, col);
260 template<
typename Lhs,
typename Rhs,
typename RetScalar>
261 struct product_coeff_impl<DefaultTraversal, 0, Lhs, Rhs, RetScalar>
263 typedef typename Lhs::Index Index;
264 static EIGEN_STRONG_INLINE
void run(Index , Index ,
const Lhs& ,
const Rhs& , RetScalar &res)
270 template<
typename Lhs,
typename Rhs,
typename RetScalar>
271 struct product_coeff_impl<DefaultTraversal,
Dynamic, Lhs, Rhs, RetScalar>
273 typedef typename Lhs::Index Index;
274 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, RetScalar& res)
276 res = (lhs.row(row).transpose().cwiseProduct( rhs.col(col) )).sum();
284 template<
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename Packet>
285 struct product_coeff_vectorized_unroller
287 typedef typename Lhs::Index Index;
288 enum { PacketSize = packet_traits<typename Lhs::Scalar>::size };
289 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::PacketScalar &pres)
291 product_coeff_vectorized_unroller<UnrollingIndex-PacketSize, Lhs, Rhs, Packet>::run(row, col, lhs, rhs, pres);
292 pres = padd(pres, pmul( lhs.template packet<Aligned>(row, UnrollingIndex) , rhs.template packet<Aligned>(UnrollingIndex, col) ));
296 template<
typename Lhs,
typename Rhs,
typename Packet>
297 struct product_coeff_vectorized_unroller<0, Lhs, Rhs, Packet>
299 typedef typename Lhs::Index Index;
300 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::PacketScalar &pres)
302 pres = pmul(lhs.template packet<Aligned>(row, 0) , rhs.template packet<Aligned>(0, col));
306 template<
typename Lhs,
typename Rhs,
typename RetScalar>
307 struct product_coeff_impl<InnerVectorizedTraversal, 0, Lhs, Rhs, RetScalar>
309 typedef typename Lhs::Index Index;
310 static EIGEN_STRONG_INLINE
void run(Index , Index ,
const Lhs& ,
const Rhs& , RetScalar &res)
316 template<
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename RetScalar>
317 struct product_coeff_impl<InnerVectorizedTraversal, UnrollingIndex, Lhs, Rhs, RetScalar>
319 typedef typename Lhs::PacketScalar Packet;
320 typedef typename Lhs::Index Index;
321 enum { PacketSize = packet_traits<typename Lhs::Scalar>::size };
322 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, RetScalar &res)
325 product_coeff_vectorized_unroller<UnrollingIndex-PacketSize, Lhs, Rhs, Packet>::run(row, col, lhs, rhs, pres);
330 template<
typename Lhs,
typename Rhs,
int LhsRows = Lhs::RowsAtCompileTime,
int RhsCols = Rhs::ColsAtCompileTime>
331 struct product_coeff_vectorized_dyn_selector
333 typedef typename Lhs::Index Index;
334 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::Scalar &res)
336 res = lhs.row(row).transpose().cwiseProduct(rhs.col(col)).sum();
342 template<
typename Lhs,
typename Rhs,
int RhsCols>
343 struct product_coeff_vectorized_dyn_selector<Lhs,Rhs,1,RhsCols>
345 typedef typename Lhs::Index Index;
346 static EIGEN_STRONG_INLINE
void run(Index , Index col,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::Scalar &res)
348 res = lhs.transpose().cwiseProduct(rhs.col(col)).sum();
352 template<
typename Lhs,
typename Rhs,
int LhsRows>
353 struct product_coeff_vectorized_dyn_selector<Lhs,Rhs,LhsRows,1>
355 typedef typename Lhs::Index Index;
356 static EIGEN_STRONG_INLINE
void run(Index row, Index ,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::Scalar &res)
358 res = lhs.row(row).transpose().cwiseProduct(rhs).sum();
362 template<
typename Lhs,
typename Rhs>
363 struct product_coeff_vectorized_dyn_selector<Lhs,Rhs,1,1>
365 typedef typename Lhs::Index Index;
366 static EIGEN_STRONG_INLINE
void run(Index , Index ,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::Scalar &res)
368 res = lhs.transpose().cwiseProduct(rhs).sum();
372 template<
typename Lhs,
typename Rhs,
typename RetScalar>
373 struct product_coeff_impl<InnerVectorizedTraversal,
Dynamic, Lhs, Rhs, RetScalar>
375 typedef typename Lhs::Index Index;
376 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs,
typename Lhs::Scalar &res)
378 product_coeff_vectorized_dyn_selector<Lhs,Rhs>::run(row, col, lhs, rhs, res);
386 template<
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
387 struct product_packet_impl<
RowMajor, UnrollingIndex, Lhs, Rhs, Packet, LoadMode>
389 typedef typename Lhs::Index Index;
390 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, Packet &res)
392 product_packet_impl<RowMajor, UnrollingIndex-1, Lhs, Rhs, Packet, LoadMode>::run(row, col, lhs, rhs, res);
393 res = pmadd(pset1<Packet>(lhs.coeff(row, UnrollingIndex-1)), rhs.template packet<LoadMode>(UnrollingIndex-1, col), res);
397 template<
int UnrollingIndex,
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
398 struct product_packet_impl<
ColMajor, UnrollingIndex, Lhs, Rhs, Packet, LoadMode>
400 typedef typename Lhs::Index Index;
401 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, Packet &res)
403 product_packet_impl<ColMajor, UnrollingIndex-1, Lhs, Rhs, Packet, LoadMode>::run(row, col, lhs, rhs, res);
404 res = pmadd(lhs.template packet<LoadMode>(row, UnrollingIndex-1), pset1<Packet>(rhs.coeff(UnrollingIndex-1, col)), res);
408 template<
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
409 struct product_packet_impl<
RowMajor, 1, Lhs, Rhs, Packet, LoadMode>
411 typedef typename Lhs::Index Index;
412 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, Packet &res)
414 res = pmul(pset1<Packet>(lhs.coeff(row, 0)),rhs.template packet<LoadMode>(0, col));
418 template<
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
419 struct product_packet_impl<
ColMajor, 1, Lhs, Rhs, Packet, LoadMode>
421 typedef typename Lhs::Index Index;
422 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, Packet &res)
424 res = pmul(lhs.template packet<LoadMode>(row, 0), pset1<Packet>(rhs.coeff(0, col)));
428 template<
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
429 struct product_packet_impl<
RowMajor, 0, Lhs, Rhs, Packet, LoadMode>
431 typedef typename Lhs::Index Index;
432 static EIGEN_STRONG_INLINE
void run(Index , Index ,
const Lhs& ,
const Rhs& , Packet &res)
434 res = pset1<Packet>(0);
438 template<
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
439 struct product_packet_impl<
ColMajor, 0, Lhs, Rhs, Packet, LoadMode>
441 typedef typename Lhs::Index Index;
442 static EIGEN_STRONG_INLINE
void run(Index , Index ,
const Lhs& ,
const Rhs& , Packet &res)
444 res = pset1<Packet>(0);
448 template<
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
449 struct product_packet_impl<
RowMajor,
Dynamic, Lhs, Rhs, Packet, LoadMode>
451 typedef typename Lhs::Index Index;
452 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, Packet& res)
454 res = pset1<Packet>(0);
455 for(Index i = 0; i < lhs.cols(); ++i)
456 res = pmadd(pset1<Packet>(lhs.coeff(row, i)), rhs.template packet<LoadMode>(i, col), res);
460 template<
typename Lhs,
typename Rhs,
typename Packet,
int LoadMode>
461 struct product_packet_impl<
ColMajor,
Dynamic, Lhs, Rhs, Packet, LoadMode>
463 typedef typename Lhs::Index Index;
464 static EIGEN_STRONG_INLINE
void run(Index row, Index col,
const Lhs& lhs,
const Rhs& rhs, Packet& res)
466 res = pset1<Packet>(0);
467 for(Index i = 0; i < lhs.cols(); ++i)
468 res = pmadd(lhs.template packet<LoadMode>(row, i), pset1<Packet>(rhs.coeff(i, col)), res);
476 #endif // EIGEN_COEFFBASED_PRODUCT_H
const unsigned int EvalBeforeNestingBit
Definition: Constants.h:58
const int Dynamic
Definition: Constants.h:21
Definition: Constants.h:264
const unsigned int PacketAccessBit
Definition: Constants.h:81
const unsigned int ActualPacketAccessBit
Definition: Constants.h:92
const unsigned int EvalBeforeAssigningBit
Definition: Constants.h:63
Definition: Constants.h:266
const unsigned int RowMajorBit
Definition: Constants.h:53
const unsigned int AlignedBit
Definition: Constants.h:147