| 521 | /** \internal \returns the max of \a a and \a b (coeff-wise) |
| 522 | If \a a or \b b is NaN, the return value is implementation defined. */ |
| 523 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 524 | pmax(const Packet& a, const Packet& b) { return numext::maxi(a, b); } |
| 525 | |
| 526 | /** \internal \returns the max of \a a and \a b (coeff-wise). |
| 527 | NaNPropagation determines the NaN propagation semantics. */ |
no test coverage detected