TR-mbed 1.0
Loading...
Searching...
No Matches
Transpose.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) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
5// Copyright (C) 2009-2014 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 EIGEN_TRANSPOSE_H
12#define EIGEN_TRANSPOSE_H
13
14namespace Eigen {
15
16namespace internal {
17template<typename MatrixType>
18struct traits<Transpose<MatrixType> > : public traits<MatrixType>
19{
22 enum {
23 RowsAtCompileTime = MatrixType::ColsAtCompileTime,
24 ColsAtCompileTime = MatrixType::RowsAtCompileTime,
25 MaxRowsAtCompileTime = MatrixType::MaxColsAtCompileTime,
26 MaxColsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
29 Flags1 = Flags0 | FlagsLvalueBit,
30 Flags = Flags1 ^ RowMajorBit,
32 OuterStrideAtCompileTime = outer_stride_at_compile_time<MatrixType>::ret
33 };
34};
35}
36
37template<typename MatrixType, typename StorageKind> class TransposeImpl;
38
92
93namespace internal {
94
95template<typename MatrixType, bool HasDirectAccess = has_direct_access<MatrixType>::ret>
100
101template<typename MatrixType>
106
107} // end namespace internal
108
109// Generic API dispatcher
110template<typename XprType, typename StorageKind>
112 : public internal::generic_xpr_base<Transpose<XprType> >::type
113{
114public:
116};
117
118template<typename MatrixType> class TransposeImpl<MatrixType,Dense>
119 : public internal::TransposeImpl_base<MatrixType>::type
120{
121 public:
122
124 using Base::coeffRef;
127
129 Index innerStride() const { return derived().nestedExpression().innerStride(); }
131 Index outerStride() const { return derived().nestedExpression().outerStride(); }
132
133 typedef typename internal::conditional<
135 Scalar,
136 const Scalar
138
140 ScalarWithConstIfNotLvalue* data() { return derived().nestedExpression().data(); }
142 const Scalar* data() const { return derived().nestedExpression().data(); }
143
144 // FIXME: shall we keep the const version of coeffRef?
146 const Scalar& coeffRef(Index rowId, Index colId) const
147 {
148 return derived().nestedExpression().coeffRef(colId, rowId);
149 }
150
152 const Scalar& coeffRef(Index index) const
153 {
154 return derived().nestedExpression().coeffRef(index);
155 }
156 protected:
158};
159
179template<typename Derived>
181Transpose<Derived>
183{
184 return TransposeReturnType(derived());
185}
186
192template<typename Derived>
196{
197 return ConstTransposeReturnType(derived());
198}
199
219template<typename Derived>
222{
223 return AdjointReturnType(this->transpose());
224}
225
226/***************************************************************************
227* "in place" transpose implementation
228***************************************************************************/
229
230namespace internal {
231
232template<typename MatrixType,
233 bool IsSquare = (MatrixType::RowsAtCompileTime == MatrixType::ColsAtCompileTime) && MatrixType::RowsAtCompileTime!=Dynamic,
234 bool MatchPacketSize =
235 (int(MatrixType::RowsAtCompileTime) == int(internal::packet_traits<typename MatrixType::Scalar>::size))
238
239template<typename MatrixType>
241 static void run(MatrixType& m) {
242 m.matrix().template triangularView<StrictlyUpper>().swap(m.matrix().transpose().template triangularView<StrictlyUpper>());
243 }
244};
245
246template<typename MatrixType>
247struct inplace_transpose_selector<MatrixType,true,true> { // PacketSize x PacketSize
248 static void run(MatrixType& m) {
249 typedef typename MatrixType::Scalar Scalar;
254 for (Index i=0; i<PacketSize; ++i)
255 A.packet[i] = m.template packetByOuterInner<Alignment>(i,0);
257 for (Index i=0; i<PacketSize; ++i)
258 m.template writePacket<Alignment>(m.rowIndexByOuterInner(i,0), m.colIndexByOuterInner(i,0), A.packet[i]);
259 }
260};
261
262
263template <typename MatrixType, Index Alignment>
265 typedef typename MatrixType::Scalar Scalar;
268 eigen_assert(m.rows() == m.cols());
269 int row_start = 0;
270 for (; row_start + PacketSize <= m.rows(); row_start += PacketSize) {
271 for (int col_start = row_start; col_start + PacketSize <= m.cols(); col_start += PacketSize) {
273 if (row_start == col_start) {
274 for (Index i=0; i<PacketSize; ++i)
277 for (Index i=0; i<PacketSize; ++i)
278 m.template writePacket<Alignment>(m.rowIndexByOuterInner(row_start + i, col_start), m.colIndexByOuterInner(row_start + i,col_start), A.packet[i]);
279 } else {
281 for (Index i=0; i<PacketSize; ++i) {
283 B.packet[i] = m.template packetByOuterInner<Alignment>(col_start + i, row_start);
284 }
287 for (Index i=0; i<PacketSize; ++i) {
288 m.template writePacket<Alignment>(m.rowIndexByOuterInner(row_start + i, col_start), m.colIndexByOuterInner(row_start + i,col_start), B.packet[i]);
289 m.template writePacket<Alignment>(m.rowIndexByOuterInner(col_start + i, row_start), m.colIndexByOuterInner(col_start + i,row_start), A.packet[i]);
290 }
291 }
292 }
293 }
294 for (Index row = row_start; row < m.rows(); ++row) {
295 m.matrix().row(row).head(row).swap(
296 m.matrix().col(row).head(row).transpose());
297 }
298}
299
300template<typename MatrixType,bool MatchPacketSize>
301struct inplace_transpose_selector<MatrixType,false,MatchPacketSize> { // non square or dynamic matrix
302 static void run(MatrixType& m) {
303 typedef typename MatrixType::Scalar Scalar;
304 if (m.rows() == m.cols()) {
306 if (!NumTraits<Scalar>::IsComplex && m.rows() >= PacketSize) {
307 if ((m.rows() % PacketSize) == 0)
309 else
311 }
312 else {
313 m.matrix().template triangularView<StrictlyUpper>().swap(m.matrix().transpose().template triangularView<StrictlyUpper>());
314 }
315 } else {
316 m = m.transpose().eval();
317 }
318 }
319};
320
321
322} // end namespace internal
323
343template<typename Derived>
345{
346 eigen_assert((rows() == cols() || (RowsAtCompileTime == Dynamic && ColsAtCompileTime == Dynamic))
347 && "transposeInPlace() called on a non-square non-resizable matrix");
349}
350
351/***************************************************************************
352* "in place" adjoint implementation
353***************************************************************************/
354
374template<typename Derived>
376{
377 derived() = adjoint().eval();
378}
379
380#ifndef EIGEN_NO_DEBUG
381
382// The following is to detect aliasing problems in most common cases.
383
384namespace internal {
385
386template<bool DestIsTransposed, typename OtherDerived>
391
392template<bool DestIsTransposed, typename BinOp, typename DerivedA, typename DerivedB>
399
400template<typename Scalar, bool DestIsTransposed, typename OtherDerived>
402{
403 static bool run(const Scalar* dest, const OtherDerived& src)
404 {
406 }
407};
408
409template<typename Scalar, bool DestIsTransposed, typename BinOp, typename DerivedA, typename DerivedB>
418
419// the following selector, checkTransposeAliasing_impl, based on MightHaveTransposeAliasing,
420// is because when the condition controlling the assert is known at compile time, ICC emits a warning.
421// This is actually a good warning: in expressions that don't have any transposing, the condition is
422// known at compile time to be false, and using that, we can avoid generating the code of the assert again
423// and again for all these expressions that don't need it.
424
425template<typename Derived, typename OtherDerived,
426 bool MightHaveTransposeAliasing
427 = check_transpose_aliasing_compile_time_selector
429 >
431{
432 static void run(const Derived& dst, const OtherDerived& other)
433 {
435 <typename Derived::Scalar,blas_traits<Derived>::IsTransposed,OtherDerived>
436 ::run(extract_data(dst), other))
437 && "aliasing detected during transposition, use transposeInPlace() "
438 "or evaluate the rhs into a temporary using .eval()");
439
440 }
441};
442
443template<typename Derived, typename OtherDerived>
445{
446 static void run(const Derived&, const OtherDerived&)
447 {
448 }
449};
450
451template<typename Dst, typename Src>
452void check_for_aliasing(const Dst &dst, const Src &src)
453{
454 if((!Dst::IsVectorAtCompileTime) && dst.rows()>1 && dst.cols()>1)
456}
457
458} // end namespace internal
459
460#endif // EIGEN_NO_DEBUG
461
462} // end namespace Eigen
463
464#endif // EIGEN_TRANSPOSE_H
Matrix3f m
Definition AngleAxis_mimic_euler.cpp:1
int i
Definition BiCGSTAB_step_by_step.cpp:9
#define EIGEN_GENERIC_PUBLIC_INTERFACE(Derived)
Definition Macros.h:1264
#define EIGEN_DEFAULT_EMPTY_CONSTRUCTOR_AND_DESTRUCTOR(Derived)
Definition Macros.h:1247
#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_INHERIT_ASSIGNMENT_OPERATORS(Derived)
Definition Macros.h:1231
#define EIGEN_STRONG_INLINE
Definition Macros.h:917
m row(1)
int rows
Definition Tutorial_commainit_02.cpp:1
int cols
Definition Tutorial_commainit_02.cpp:1
void adjoint(const MatrixType &m)
Definition adjoint.cpp:67
SCALAR Scalar
Definition bench_gemm.cpp:46
Matrix< SCALARA, Dynamic, Dynamic, opt_A > A
Definition bench_gemm.cpp:48
Matrix< SCALARB, Dynamic, Dynamic, opt_B > B
Definition bench_gemm.cpp:49
MatrixXf MatrixType
Definition benchmark-blocking-sizes.cpp:52
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Definition CwiseBinaryOp.h:84
EIGEN_DEVICE_FUNC void transposeInPlace()
Definition Transpose.h:344
EIGEN_DEVICE_FUNC TransposeReturnType transpose()
Definition Transpose.h:182
EIGEN_DEVICE_FUNC const AdjointReturnType adjoint() const
Definition Transpose.h:221
EIGEN_DEVICE_FUNC void adjointInPlace()
Definition Transpose.h:375
The matrix class, also used for vectors and row-vectors.
Definition Matrix.h:180
EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const
Definition PlainObjectBase.h:214
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ScalarWithConstIfNotLvalue * data()
Definition Transpose.h:140
internal::conditional< internal::is_lvalue< MatrixType >::value, Scalar, constScalar >::type ScalarWithConstIfNotLvalue
Definition Transpose.h:137
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index outerStride() const
Definition Transpose.h:131
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar & coeffRef(Index index) const
Definition Transpose.h:152
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar * data() const
Definition Transpose.h:142
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar & coeffRef(Index rowId, Index colId) const
Definition Transpose.h:146
internal::TransposeImpl_base< MatrixType >::type Base
Definition Transpose.h:123
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index innerStride() const
Definition Transpose.h:129
Definition Transpose.h:113
internal::generic_xpr_base< Transpose< XprType > >::type Base
Definition Transpose.h:115
Expression of the transpose of a matrix.
Definition Transpose.h:54
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
Definition Transpose.h:69
TransposeImpl< MatrixType, typenameinternal::traits< MatrixType >::StorageKind >::Base Base
Definition Transpose.h:59
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
Definition Transpose.h:71
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE internal::remove_reference< MatrixTypeNested >::type & nestedExpression()
Definition Transpose.h:81
internal::ref_selector< MatrixType >::non_const_type m_matrix
Definition Transpose.h:90
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const internal::remove_all< MatrixTypeNested >::type & nestedExpression() const
Definition Transpose.h:76
internal::ref_selector< MatrixType >::non_const_type MatrixTypeNested
Definition Transpose.h:57
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void resize(Index nrows, Index ncols)
Definition Transpose.h:85
virtual EIGEN_DEVICE_FUNC const Scalar * data() const
Definition TensorRef.h:62
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
Definition common.h:110
const unsigned int PacketAccessBit
Definition Constants.h:94
const unsigned int LvalueBit
Definition Constants.h:144
const unsigned int RowMajorBit
Definition Constants.h:66
return int(ret)+1
DenseIndex ret
Definition level1_cplx_impl.h:44
void check_for_aliasing(const Dst &dst, const Src &src)
Definition Transpose.h:452
EIGEN_STRONG_INLINE void ptranspose(PacketBlock< Packet2cf, 2 > &kernel)
Definition Complex.h:224
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE const T::Scalar * extract_data(const T &m)
Definition BlasUtil.h:533
void BlockedInPlaceTranspose(MatrixType &m)
Definition Transpose.h:264
Namespace containing all symbols from the Eigen library.
Definition bench_norm.cpp:85
const unsigned int NestByRefBit
Definition Constants.h:169
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
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition NumTraits.h:233
dense_xpr_base< Transpose< MatrixType > >::type type
Definition Transpose.h:104
Definition Transpose.h:97
dense_xpr_base< Transpose< MatrixType > >::type type
Definition Transpose.h:98
Definition BlasUtil.h:403
@ IsTransposed
Definition BlasUtil.h:409
static void run(const Derived &, const OtherDerived &)
Definition Transpose.h:446
static void run(const Derived &dst, const OtherDerived &other)
Definition Transpose.h:432
static bool run(const Scalar *dest, const CwiseBinaryOp< BinOp, DerivedA, DerivedB > &src)
Definition Transpose.h:412
static bool run(const Scalar *dest, const OtherDerived &src)
Definition Transpose.h:403
Definition Meta.h:109
Definition CoreEvaluators.h:91
Definition XprHelper.h:501
Definition DenseCoeffsBase.h:659
static void run(MatrixType &m)
Definition Transpose.h:241
static void run(MatrixType &m)
Definition Transpose.h:248
Definition XprHelper.h:660
Definition DenseCoeffsBase.h:671
Definition GenericPacketMath.h:107
remove_reference< MatrixTypeNested >::type MatrixTypeNestedPlain
Definition Transpose.h:21
ref_selector< MatrixType >::type MatrixTypeNested
Definition Transpose.h:20
Definition ForwardDeclarations.h:17
Definition PacketMath.h:47