| 836 | |
| 837 | /** \internal \returns the ceil of \a a (coeff-wise) */ |
| 838 | template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS |
| 839 | Packet pceil(const Packet& a) { using numext::ceil; return ceil(a); } |
| 840 | |
| 841 | /** \internal \returns the first element of a packet */ |
| 842 | template<typename Packet> |