| 241 | |
| 242 | /** \internal \returns a / b (coeff-wise) */ |
| 243 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 244 | pdiv(const Packet& a, const Packet& b) { return a/b; } |
| 245 | |
| 246 | // In the generic case, memset to all one bits. |
| 247 | template<typename Packet, typename EnableIf = void> |
no outgoing calls
no test coverage detected