18 template<
typename DstEvaluatorTypeT,
typename SrcEvaluatorTypeT>
26 using Base::m_functor;
34 :
Base(dst, src, func, dstExpr)
37 template<
int StoreMode,
int LoadMode,
typename PacketType>
41 const_cast<SrcEvaluatorTypeT&
>(
m_src).
template writePacket<LoadMode>(
row,
col,
m_dst.template packet<StoreMode,PacketType>(
row,
col));
45 template<
int StoreMode,
int LoadMode,
typename PacketType>
49 const_cast<SrcEvaluatorTypeT&
>(
m_src).
template writePacket<LoadMode>(index,
m_dst.template packet<StoreMode,PacketType>(index));
50 m_dst.template writePacket<StoreMode>(index,tmp);
54 template<
int StoreMode,
int LoadMode,
typename PacketType>
57 Index row = Base::rowIndexByOuterInner(outer, inner);
58 Index col = Base::colIndexByOuterInner(outer, inner);
59 assignPacket<StoreMode,LoadMode,PacketType>(
row,
col);
67 #endif // EIGEN_SWAP_H