| 554 | }; |
| 555 | |
| 556 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
| 557 | pblend(const Selector<unpacket_traits<Packet>::size>& ifPacket, const Packet& thenPacket, const Packet& elsePacket) { |
| 558 | return ifPacket.select[0] ? thenPacket : elsePacket; |
| 559 | } |
| 560 | |
| 561 | /** \internal \returns \a a with the first coefficient replaced by the scalar b */ |
| 562 | template<typename Packet> EIGEN_DEVICE_FUNC inline Packet |
no outgoing calls
no test coverage detected