Reverse.h 6.91 KB
Newer Older
LM's avatar
LM committed
1 2 3 4 5 6 7
// This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
// Copyright (C) 2009 Ricard Marxer <email@ricardmarxer.com>
// Copyright (C) 2009-2010 Gael Guennebaud <gael.guennebaud@inria.fr>
//
Don Gagne's avatar
Don Gagne committed
8 9 10
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
LM's avatar
LM committed
11 12 13 14

#ifndef EIGEN_REVERSE_H
#define EIGEN_REVERSE_H

Don Gagne's avatar
Don Gagne committed
15 16
namespace Eigen { 

LM's avatar
LM committed
17 18 19 20 21 22 23 24 25
namespace internal {

template<typename MatrixType, int Direction>
struct traits<Reverse<MatrixType, Direction> >
 : traits<MatrixType>
{
  typedef typename MatrixType::Scalar Scalar;
  typedef typename traits<MatrixType>::StorageKind StorageKind;
  typedef typename traits<MatrixType>::XprKind XprKind;
26
  typedef typename ref_selector<MatrixType>::type MatrixTypeNested;
LM's avatar
LM committed
27 28 29 30 31 32
  typedef typename remove_reference<MatrixTypeNested>::type _MatrixTypeNested;
  enum {
    RowsAtCompileTime = MatrixType::RowsAtCompileTime,
    ColsAtCompileTime = MatrixType::ColsAtCompileTime,
    MaxRowsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
    MaxColsAtCompileTime = MatrixType::MaxColsAtCompileTime,
33
    Flags = _MatrixTypeNested::Flags & (RowMajorBit | LvalueBit)
LM's avatar
LM committed
34 35 36
  };
};

37
template<typename PacketType, bool ReversePacket> struct reverse_packet_cond
LM's avatar
LM committed
38
{
39
  static inline PacketType run(const PacketType& x) { return preverse(x); }
LM's avatar
LM committed
40 41
};

42
template<typename PacketType> struct reverse_packet_cond<PacketType,false>
LM's avatar
LM committed
43
{
44
  static inline PacketType run(const PacketType& x) { return x; }
LM's avatar
LM committed
45 46 47 48
};

} // end namespace internal 

49 50 51 52 53 54 55 56 57 58 59 60 61 62
/** \class Reverse
  * \ingroup Core_Module
  *
  * \brief Expression of the reverse of a vector or matrix
  *
  * \tparam MatrixType the type of the object of which we are taking the reverse
  * \tparam Direction defines the direction of the reverse operation, can be Vertical, Horizontal, or BothDirections
  *
  * This class represents an expression of the reverse of a vector.
  * It is the return type of MatrixBase::reverse() and VectorwiseOp::reverse()
  * and most of the time this is the only way it is used.
  *
  * \sa MatrixBase::reverse(), VectorwiseOp::reverse()
  */
LM's avatar
LM committed
63 64 65 66 67 68 69
template<typename MatrixType, int Direction> class Reverse
  : public internal::dense_xpr_base< Reverse<MatrixType, Direction> >::type
{
  public:

    typedef typename internal::dense_xpr_base<Reverse>::type Base;
    EIGEN_DENSE_PUBLIC_INTERFACE(Reverse)
70
    typedef typename internal::remove_all<MatrixType>::type NestedExpression;
LM's avatar
LM committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
    using Base::IsRowMajor;

  protected:
    enum {
      PacketSize = internal::packet_traits<Scalar>::size,
      IsColMajor = !IsRowMajor,
      ReverseRow = (Direction == Vertical)   || (Direction == BothDirections),
      ReverseCol = (Direction == Horizontal) || (Direction == BothDirections),
      OffsetRow  = ReverseRow && IsColMajor ? PacketSize : 1,
      OffsetCol  = ReverseCol && IsRowMajor ? PacketSize : 1,
      ReversePacket = (Direction == BothDirections)
                    || ((Direction == Vertical)   && IsColMajor)
                    || ((Direction == Horizontal) && IsRowMajor)
    };
    typedef internal::reverse_packet_cond<PacketScalar,ReversePacket> reverse_packet;
  public:

88
    EIGEN_DEVICE_FUNC explicit inline Reverse(const MatrixType& matrix) : m_matrix(matrix) { }
LM's avatar
LM committed
89 90 91

    EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Reverse)

92 93
    EIGEN_DEVICE_FUNC inline Index rows() const { return m_matrix.rows(); }
    EIGEN_DEVICE_FUNC inline Index cols() const { return m_matrix.cols(); }
LM's avatar
LM committed
94

95
    EIGEN_DEVICE_FUNC inline Index innerStride() const
LM's avatar
LM committed
96 97 98 99
    {
      return -m_matrix.innerStride();
    }

100
    EIGEN_DEVICE_FUNC const typename internal::remove_all<typename MatrixType::Nested>::type&
Don Gagne's avatar
Don Gagne committed
101 102 103 104 105
    nestedExpression() const 
    {
      return m_matrix;
    }

LM's avatar
LM committed
106
  protected:
Don Gagne's avatar
Don Gagne committed
107
    typename MatrixType::Nested m_matrix;
LM's avatar
LM committed
108 109 110 111 112 113 114 115 116 117 118 119
};

/** \returns an expression of the reverse of *this.
  *
  * Example: \include MatrixBase_reverse.cpp
  * Output: \verbinclude MatrixBase_reverse.out
  *
  */
template<typename Derived>
inline typename DenseBase<Derived>::ReverseReturnType
DenseBase<Derived>::reverse()
{
120
  return ReverseReturnType(derived());
LM's avatar
LM committed
121 122
}

123 124

//reverse const overload moved DenseBase.h due to a CUDA compiler bug
LM's avatar
LM committed
125 126 127 128 129 130

/** This is the "in place" version of reverse: it reverses \c *this.
  *
  * In most cases it is probably better to simply use the reversed expression
  * of a matrix. However, when reversing the matrix data itself is really needed,
  * then this "in-place" version is probably the right choice because it provides
131
  * the following additional benefits:
LM's avatar
LM committed
132 133
  *  - less error prone: doing the same operation with .reverse() requires special care:
  *    \code m = m.reverse().eval(); \endcode
134
  *  - this API enables reverse operations without the need for a temporary
LM's avatar
LM committed
135 136
  *  - it allows future optimizations (cache friendliness, etc.)
  *
137
  * \sa VectorwiseOp::reverseInPlace(), reverse() */
LM's avatar
LM committed
138 139 140
template<typename Derived>
inline void DenseBase<Derived>::reverseInPlace()
{
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
  if(cols()>rows())
  {
    Index half = cols()/2;
    leftCols(half).swap(rightCols(half).reverse());
    if((cols()%2)==1)
    {
      Index half2 = rows()/2;
      col(half).head(half2).swap(col(half).tail(half2).reverse());
    }
  }
  else
  {
    Index half = rows()/2;
    topRows(half).swap(bottomRows(half).reverse());
    if((rows()%2)==1)
    {
      Index half2 = cols()/2;
      row(half).head(half2).swap(row(half).tail(half2).reverse());
    }
  }
}

namespace internal {
  
template<int Direction>
struct vectorwise_reverse_inplace_impl;

template<>
struct vectorwise_reverse_inplace_impl<Vertical>
{
  template<typename ExpressionType>
  static void run(ExpressionType &xpr)
  {
    Index half = xpr.rows()/2;
    xpr.topRows(half).swap(xpr.bottomRows(half).colwise().reverse());
  }
};

template<>
struct vectorwise_reverse_inplace_impl<Horizontal>
{
  template<typename ExpressionType>
  static void run(ExpressionType &xpr)
  {
    Index half = xpr.cols()/2;
    xpr.leftCols(half).swap(xpr.rightCols(half).rowwise().reverse());
  }
};

} // end namespace internal

/** This is the "in place" version of VectorwiseOp::reverse: it reverses each column or row of \c *this.
  *
  * In most cases it is probably better to simply use the reversed expression
  * of a matrix. However, when reversing the matrix data itself is really needed,
  * then this "in-place" version is probably the right choice because it provides
  * the following additional benefits:
  *  - less error prone: doing the same operation with .reverse() requires special care:
  *    \code m = m.reverse().eval(); \endcode
  *  - this API enables reverse operations without the need for a temporary
  *
  * \sa DenseBase::reverseInPlace(), reverse() */
template<typename ExpressionType, int Direction>
void VectorwiseOp<ExpressionType,Direction>::reverseInPlace()
{
  internal::vectorwise_reverse_inplace_impl<Direction>::run(_expression().const_cast_derived());
LM's avatar
LM committed
207 208
}

Don Gagne's avatar
Don Gagne committed
209
} // end namespace Eigen
LM's avatar
LM committed
210 211

#endif // EIGEN_REVERSE_H