| 1256 | /** \internal \returns the min of the elements of \a a */ |
| 1257 | template <typename Packet> |
| 1258 | EIGEN_DEVICE_FUNC inline typename unpacket_traits<Packet>::type predux_max(const Packet& a) { |
| 1259 | typedef typename unpacket_traits<Packet>::type Scalar; |
| 1260 | return predux_helper(a, EIGEN_BINARY_OP_NAN_PROPAGATION(Scalar, (pmax<PropagateFast, Scalar>))); |
| 1261 | } |
| 1262 | |
| 1263 | template <int NaNPropagation, typename Packet> |
| 1264 | EIGEN_DEVICE_FUNC inline typename unpacket_traits<Packet>::type predux_max(const Packet& a) { |
no test coverage detected