| 172 | |
| 173 | /** \internal \returns a / b (coeff-wise) */ |
| 174 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 175 | pdiv(const Packet& a, |
| 176 | const Packet& b) { return a/b; } |
| 177 | |
| 178 | /** \internal \returns the min of \a a and \a b (coeff-wise) */ |
| 179 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
no outgoing calls
no test coverage detected