MOAB
4.9.3pre
|
Template functor for scalar/packet assignment. More...
#include <AssignmentFunctors.h>
Public Member Functions | |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void | assignCoeff (Scalar &a, const Scalar &b) const |
template<int Alignment, typename Packet > | |
EIGEN_STRONG_INLINE void | assignPacket (Scalar *a, const Packet &b) const |
Template functor for scalar/packet assignment.
Definition at line 21 of file AssignmentFunctors.h.
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void Eigen::internal::assign_op< Scalar >::assignCoeff | ( | Scalar & | a, |
const Scalar & | b | ||
) | const [inline] |
Definition at line 24 of file AssignmentFunctors.h.
{ a = b; }
EIGEN_STRONG_INLINE void Eigen::internal::assign_op< Scalar >::assignPacket | ( | Scalar * | a, |
const Packet & | b | ||
) | const [inline] |
Definition at line 27 of file AssignmentFunctors.h.
{ internal::pstoret<Scalar,Packet,Alignment>(a,b); }