| 366 | /** \internal \returns a / b (coeff-wise) */ |
| 367 | template <typename Packet> |
| 368 | EIGEN_DEVICE_FUNC inline Packet pdiv(const Packet& a, const Packet& b) { |
| 369 | return a / b; |
| 370 | } |
| 371 | |
| 372 | // In the generic case, memset to all one bits. |
| 373 | template <typename Packet, typename EnableIf = void> |
no outgoing calls
no test coverage detected