| 628 | /** \internal \returns the min of \a a and \a b (coeff-wise). |
| 629 | If \a a or \b b is NaN, the return value is implementation defined. */ |
| 630 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 631 | pmin(const Packet& a, const Packet& b) { return numext::mini(a,b); } |
| 632 | |
| 633 | /** \internal \returns the min of \a a and \a b (coeff-wise). |
| 634 | NaNPropagation determines the NaN propagation semantics. */ |
no test coverage detected