2008-06-15 11:54:18 +00:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra. Eigen itself is part of the KDE project.
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr>
|
|
|
|
|
// Copyright (C) 2006-2008 Benoit Jacob <jacob@math.jussieu.fr>
|
|
|
|
|
//
|
|
|
|
|
// Eigen is free software; you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
|
// version 3 of the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// Alternatively, you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2 of
|
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
// License and a copy of the GNU General Public License along with
|
|
|
|
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
#ifndef EIGEN_DIAGONALPRODUCT_H
|
|
|
|
|
#define EIGEN_DIAGONALPRODUCT_H
|
|
|
|
|
|
2008-06-19 17:33:57 +00:00
|
|
|
template<typename LhsNested, typename RhsNested>
|
|
|
|
|
struct ei_traits<Product<LhsNested, RhsNested, DiagonalProduct> >
|
2008-06-15 11:54:18 +00:00
|
|
|
{
|
2008-06-19 17:33:57 +00:00
|
|
|
// clean the nested types:
|
|
|
|
|
typedef typename ei_unconst<typename ei_unref<LhsNested>::type>::type _LhsNested;
|
|
|
|
|
typedef typename ei_unconst<typename ei_unref<RhsNested>::type>::type _RhsNested;
|
|
|
|
|
typedef typename _LhsNested::Scalar Scalar;
|
|
|
|
|
|
2008-06-15 11:54:18 +00:00
|
|
|
enum {
|
|
|
|
|
LhsFlags = _LhsNested::Flags,
|
|
|
|
|
RhsFlags = _RhsNested::Flags,
|
2008-06-19 17:33:57 +00:00
|
|
|
RowsAtCompileTime = _LhsNested::RowsAtCompileTime,
|
|
|
|
|
ColsAtCompileTime = _RhsNested::ColsAtCompileTime,
|
|
|
|
|
MaxRowsAtCompileTime = _LhsNested::MaxRowsAtCompileTime,
|
|
|
|
|
MaxColsAtCompileTime = _RhsNested::MaxColsAtCompileTime,
|
|
|
|
|
|
|
|
|
|
LhsIsDiagonal = (_LhsNested::Flags&Diagonal)==Diagonal,
|
|
|
|
|
RhsIsDiagonal = (_RhsNested::Flags&Diagonal)==Diagonal,
|
|
|
|
|
|
|
|
|
|
CanVectorizeRhs = (!RhsIsDiagonal) && (RhsFlags & RowMajorBit) && (RhsFlags & PacketAccessBit)
|
2008-06-15 11:54:18 +00:00
|
|
|
&& (ColsAtCompileTime % ei_packet_traits<Scalar>::size == 0),
|
2008-06-19 17:33:57 +00:00
|
|
|
|
|
|
|
|
CanVectorizeLhs = (!LhsIsDiagonal) && (!(LhsFlags & RowMajorBit)) && (LhsFlags & PacketAccessBit)
|
2008-06-15 11:54:18 +00:00
|
|
|
&& (RowsAtCompileTime % ei_packet_traits<Scalar>::size == 0),
|
2008-06-19 17:33:57 +00:00
|
|
|
|
2008-08-23 17:11:44 +00:00
|
|
|
RemovedBits = ~((RhsFlags & RowMajorBit) && (!CanVectorizeLhs) ? 0 : RowMajorBit),
|
2008-06-19 17:33:57 +00:00
|
|
|
|
|
|
|
|
Flags = ((unsigned int)(LhsFlags | RhsFlags) & HereditaryBits & RemovedBits)
|
|
|
|
|
| (CanVectorizeLhs || CanVectorizeRhs ? PacketAccessBit : 0),
|
|
|
|
|
|
2008-06-15 11:54:18 +00:00
|
|
|
CoeffReadCost = NumTraits<Scalar>::MulCost + _LhsNested::CoeffReadCost + _RhsNested::CoeffReadCost
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2008-06-19 17:33:57 +00:00
|
|
|
template<typename LhsNested, typename RhsNested> class Product<LhsNested, RhsNested, DiagonalProduct> : ei_no_assignment_operator,
|
|
|
|
|
public MatrixBase<Product<LhsNested, RhsNested, DiagonalProduct> >
|
2008-06-15 11:54:18 +00:00
|
|
|
{
|
|
|
|
|
typedef typename ei_traits<Product>::_LhsNested _LhsNested;
|
|
|
|
|
typedef typename ei_traits<Product>::_RhsNested _RhsNested;
|
|
|
|
|
|
|
|
|
|
enum {
|
2008-06-19 17:33:57 +00:00
|
|
|
RhsIsDiagonal = (_RhsNested::Flags&Diagonal)==Diagonal
|
2008-06-15 11:54:18 +00:00
|
|
|
};
|
|
|
|
|
|
2008-06-19 17:33:57 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
EIGEN_GENERIC_PUBLIC_INTERFACE(Product)
|
|
|
|
|
|
|
|
|
|
template<typename Lhs, typename Rhs>
|
2008-06-15 11:54:18 +00:00
|
|
|
inline Product(const Lhs& lhs, const Rhs& rhs)
|
|
|
|
|
: m_lhs(lhs), m_rhs(rhs)
|
|
|
|
|
{
|
|
|
|
|
ei_assert(lhs.cols() == rhs.rows());
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-26 20:08:16 +00:00
|
|
|
inline int rows() const { return m_lhs.rows(); }
|
|
|
|
|
inline int cols() const { return m_rhs.cols(); }
|
2008-06-15 11:54:18 +00:00
|
|
|
|
2008-06-26 20:08:16 +00:00
|
|
|
const Scalar coeff(int row, int col) const
|
2008-06-15 11:54:18 +00:00
|
|
|
{
|
2008-06-19 17:33:57 +00:00
|
|
|
const int unique = RhsIsDiagonal ? col : row;
|
2008-06-15 11:54:18 +00:00
|
|
|
return m_lhs.coeff(row, unique) * m_rhs.coeff(unique, col);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<int LoadMode>
|
2008-06-26 20:08:16 +00:00
|
|
|
const PacketScalar packet(int row, int col) const
|
2008-06-15 11:54:18 +00:00
|
|
|
{
|
2008-06-19 17:33:57 +00:00
|
|
|
if (RhsIsDiagonal)
|
2008-06-15 11:54:18 +00:00
|
|
|
{
|
|
|
|
|
ei_assert((_LhsNested::Flags&RowMajorBit)==0);
|
2008-06-16 14:54:31 +00:00
|
|
|
return ei_pmul(m_lhs.template packet<LoadMode>(row, col), ei_pset1(m_rhs.coeff(col, col)));
|
2008-06-15 11:54:18 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ei_assert(_RhsNested::Flags&RowMajorBit);
|
2008-06-16 14:54:31 +00:00
|
|
|
return ei_pmul(ei_pset1(m_lhs.coeff(row, row)), m_rhs.template packet<LoadMode>(row, col));
|
2008-06-15 11:54:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
const LhsNested m_lhs;
|
|
|
|
|
const RhsNested m_rhs;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_DIAGONALPRODUCT_H
|