| 125 | |
| 126 | /** \internal \returns the max of \a a and \a b (coeff-wise) */ |
| 127 | template<typename Packet> inline Packet |
| 128 | pmax(const Packet& a, |
| 129 | const Packet& b) { using std::max; return (max)(a, b); } |
| 130 | |
| 131 | /** \internal \returns the absolute value of \a a */ |
| 132 | template<typename Packet> inline Packet |
no outgoing calls
no test coverage detected