| 509 | /** \internal \returns the min of \a a and \a b (coeff-wise). |
| 510 | If \a a or \b b is NaN, the return value is implementation defined. */ |
| 511 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 512 | pmin(const Packet& a, const Packet& b) { return numext::mini(a,b); } |
| 513 | |
| 514 | /** \internal \returns the min of \a a and \a b (coeff-wise). |
| 515 | NaNPropagation determines the NaN propagation semantics. */ |
no test coverage detected