TR-mbed 1.0
Loading...
Searching...
No Matches
Swap.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//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10#ifndef EIGEN_SWAP_H
11#define EIGEN_SWAP_H
12
13namespace Eigen {
14
15namespace internal {
16
17// Overload default assignPacket behavior for swapping them
18template<typename DstEvaluatorTypeT, typename SrcEvaluatorTypeT>
20 : public generic_dense_assignment_kernel<DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op<typename DstEvaluatorTypeT::Scalar>, BuiltIn>
21{
22protected:
24 using Base::m_dst;
25 using Base::m_src;
26 using Base::m_functor;
27
28public:
29 typedef typename Base::Scalar Scalar;
30 typedef typename Base::DstXprType DstXprType;
32
37
38 template<int StoreMode, int LoadMode, typename PacketType>
45
46 template<int StoreMode, int LoadMode, typename PacketType>
48 {
50 const_cast<SrcEvaluatorTypeT&>(m_src).template writePacket<LoadMode>(index, m_dst.template packet<StoreMode,PacketType>(index));
51 m_dst.template writePacket<StoreMode>(index,tmp);
52 }
53
54 // TODO find a simple way not to have to copy/paste this function from generic_dense_assignment_kernel, by simple I mean no CRTP (Gael)
55 template<int StoreMode, int LoadMode, typename PacketType>
57 {
58 Index row = Base::rowIndexByOuterInner(outer, inner);
59 Index col = Base::colIndexByOuterInner(outer, inner);
61 }
62};
63
64} // namespace internal
65
66} // end namespace Eigen
67
68#endif // EIGEN_SWAP_H
#define EIGEN_DEVICE_FUNC
Definition Macros.h:976
#define EIGEN_STRONG_INLINE
Definition Macros.h:917
m col(1)
m row(1)
generic_dense_assignment_kernel< DstEvaluatorTypeT, SrcEvaluatorTypeT, swap_assign_op< typename DstEvaluatorTypeT::Scalar >, BuiltIn > Base
Definition Swap.h:23
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE generic_dense_assignment_kernel(DstEvaluatorTypeT &dst, const SrcEvaluatorTypeT &src, const Functor &func, DstXprType &dstExpr)
Definition Swap.h:34
Definition AssignEvaluator.h:619
const SrcEvaluatorType & m_src
Definition AssignEvaluator.h:717
DstEvaluatorType & m_dst
Definition AssignEvaluator.h:716
DstEvaluatorTypeT::XprType DstXprType
Definition AssignEvaluator.h:621
DstEvaluatorType::Scalar Scalar
Definition AssignEvaluator.h:627
Namespace containing all symbols from the Eigen library.
Definition bench_norm.cpp:85
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition Meta.h:74
@ Specialized
Definition Constants.h:310
@ BuiltIn
Definition Constants.h:311
Definition BandTriangularSolver.h:13
Definition AssignmentFunctors.h:142
Definition ForwardDeclarations.h:17
Definition benchGeometry.cpp:23