| 1031 | |
| 1032 | /** \internal \returns the ceil of \a a (coeff-wise) */ |
| 1033 | template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS |
| 1034 | Packet pceil(const Packet& a) { using numext::ceil; return ceil(a); } |
| 1035 | |
| 1036 | template<typename Packet, typename EnableIf = void> |
| 1037 | struct psign_impl { |