| 532 | |
| 533 | /** \internal \returns the absolute value of \a a */ |
| 534 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 535 | pabs(const Packet& a) { return numext::abs(a); } |
| 536 | template<> EIGEN_DEVICE_FUNC inline unsigned int |
| 537 | pabs(const unsigned int& a) { return a; } |
| 538 | template<> EIGEN_DEVICE_FUNC inline unsigned long |
no test coverage detected