| 711 | |
| 712 | /** \internal \returns the min of \a a and \a b (coeff-wise) */ |
| 713 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 714 | pabsdiff(const Packet& a, const Packet& b) { return pselect(pcmp_lt(a, b), psub(b, a), psub(a, b)); } |
| 715 | |
| 716 | /** \internal \returns a packet version of \a *from, from must be properly aligned */ |
| 717 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |