| 1151 | /** \internal \returns the rounded value of \a a (coeff-wise) */ |
| 1152 | template <typename Packet> |
| 1153 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Packet pround(const Packet& a) { |
| 1154 | return nearest_integer_packetop_impl<Packet>::run_round(a); |
| 1155 | } |
| 1156 | |
| 1157 | /** \internal \returns the floor of \a a (coeff-wise) */ |
| 1158 | template <typename Packet> |
no outgoing calls
no test coverage detected