| 1157 | /** \internal \returns the floor of \a a (coeff-wise) */ |
| 1158 | template <typename Packet> |
| 1159 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Packet pfloor(const Packet& a) { |
| 1160 | return nearest_integer_packetop_impl<Packet>::run_floor(a); |
| 1161 | } |
| 1162 | |
| 1163 | /** \internal \returns the rounded value of \a a (coeff-wise) with current |
| 1164 | * rounding mode */ |
no outgoing calls
no test coverage detected