Medial Code Documentation
Loading...
Searching...
No Matches
Reverse.h
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 Ricard Marxer <email@ricardmarxer.com>
6// Copyright (C) 2009-2010 Gael Guennebaud <gael.guennebaud@inria.fr>
7//
8// This Source Code Form is subject to the terms of the Mozilla
9// Public License v. 2.0. If a copy of the MPL was not distributed
10// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
11
12#ifndef EIGEN_REVERSE_H
13#define EIGEN_REVERSE_H
14
15namespace Eigen {
16
31namespace internal {
32
33template<typename MatrixType, int Direction>
34struct traits<Reverse<MatrixType, Direction> >
35 : traits<MatrixType>
36{
37 typedef typename MatrixType::Scalar Scalar;
39 typedef typename traits<MatrixType>::XprKind XprKind;
41 typedef typename remove_reference<MatrixTypeNested>::type _MatrixTypeNested;
42 enum {
43 RowsAtCompileTime = MatrixType::RowsAtCompileTime,
44 ColsAtCompileTime = MatrixType::ColsAtCompileTime,
45 MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
46 MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime,
47 Flags = _MatrixTypeNested::Flags & (RowMajorBit | LvalueBit)
48 };
49};
50
51template<typename PacketType, bool ReversePacket> struct reverse_packet_cond
52{
53 static inline PacketType run(const PacketType& x) { return preverse(x); }
54};
55
56template<typename PacketType> struct reverse_packet_cond<PacketType,false>
57{
58 static inline PacketType run(const PacketType& x) { return x; }
59};
60
61} // end namespace internal
62
63template<typename MatrixType, int Direction> class Reverse
64 : public internal::dense_xpr_base< Reverse<MatrixType, Direction> >::type
65{
66 public:
67
68 typedef typename internal::dense_xpr_base<Reverse>::type Base;
69 EIGEN_DENSE_PUBLIC_INTERFACE(Reverse)
71 using Base::IsRowMajor;
72
73 protected:
74 enum {
76 IsColMajor = !IsRowMajor,
77 ReverseRow = (Direction == Vertical) || (Direction == BothDirections),
78 ReverseCol = (Direction == Horizontal) || (Direction == BothDirections),
79 OffsetRow = ReverseRow && IsColMajor ? PacketSize : 1,
80 OffsetCol = ReverseCol && IsRowMajor ? PacketSize : 1,
81 ReversePacket = (Direction == BothDirections)
82 || ((Direction == Vertical) && IsColMajor)
83 || ((Direction == Horizontal) && IsRowMajor)
84 };
86 public:
87
88 EIGEN_DEVICE_FUNC explicit inline Reverse(const MatrixType& matrix) : m_matrix(matrix) { }
89
90 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Reverse)
91
92 EIGEN_DEVICE_FUNC inline Index rows() const { return m_matrix.rows(); }
93 EIGEN_DEVICE_FUNC inline Index cols() const { return m_matrix.cols(); }
94
95 EIGEN_DEVICE_FUNC inline Index innerStride() const
96 {
97 return -m_matrix.innerStride();
98 }
99
101 nestedExpression() const
102 {
103 return m_matrix;
104 }
105
106 protected:
107 typename MatrixType::Nested m_matrix;
108};
109
116template<typename Derived>
119{
120 return ReverseReturnType(derived());
121}
122
123
124//reverse const overload moved DenseBase.h due to a CUDA compiler bug
125
138template<typename Derived>
140{
141 if(cols()>rows())
142 {
143 Index half = cols()/2;
144 leftCols(half).swap(rightCols(half).reverse());
145 if((cols()%2)==1)
146 {
147 Index half2 = rows()/2;
148 col(half).head(half2).swap(col(half).tail(half2).reverse());
149 }
150 }
151 else
152 {
153 Index half = rows()/2;
154 topRows(half).swap(bottomRows(half).reverse());
155 if((rows()%2)==1)
156 {
157 Index half2 = cols()/2;
158 row(half).head(half2).swap(row(half).tail(half2).reverse());
159 }
160 }
161}
162
163namespace internal {
164
165template<int Direction>
167
168template<>
170{
171 template<typename ExpressionType>
172 static void run(ExpressionType &xpr)
173 {
174 Index half = xpr.rows()/2;
175 xpr.topRows(half).swap(xpr.bottomRows(half).colwise().reverse());
176 }
177};
178
179template<>
181{
182 template<typename ExpressionType>
183 static void run(ExpressionType &xpr)
184 {
185 Index half = xpr.cols()/2;
186 xpr.leftCols(half).swap(xpr.rightCols(half).rowwise().reverse());
187 }
188};
189
190} // end namespace internal
191
203template<typename ExpressionType, int Direction>
208
209} // end namespace Eigen
210
211#endif // EIGEN_REVERSE_H
Base class for all dense matrices, vectors, and arrays.
Definition DenseBase.h:49
Expression of the reverse of a vector or matrix.
Definition Reverse.h:65
Pseudo expression representing a solving operation.
Definition Solve.h:63
Pseudo expression providing partial reduction operations.
Definition VectorwiseOp.h:157
@ BothDirections
For Reverse, both rows and columns are reversed; not used for PartialReduxExpr and VectorwiseOp.
Definition Constants.h:271
@ Horizontal
For Reverse, all rows are reversed; for PartialReduxExpr and VectorwiseOp, act on rows.
Definition Constants.h:268
@ Vertical
For Reverse, all columns are reversed; for PartialReduxExpr and VectorwiseOp, act on columns.
Definition Constants.h:265
const unsigned int LvalueBit
Means the expression has a coeffRef() method, i.e.
Definition Constants.h:138
const unsigned int RowMajorBit
for a matrix, this means that the storage order is row-major.
Definition Constants.h:61
Definition XprHelper.h:428
Definition GenericPacketMath.h:90
Definition ForwardDeclarations.h:17
Definition Meta.h:30