| 572 | |
| 573 | template<typename Packet> |
| 574 | DoublePacket<Packet> padd(const DoublePacket<Packet> &a, const DoublePacket<Packet> &b) |
| 575 | { |
| 576 | DoublePacket<Packet> res; |
| 577 | res.first = padd(a.first, b.first); |
| 578 | res.second = padd(a.second,b.second); |
| 579 | return res; |
| 580 | } |
| 581 | |
| 582 | template<typename Packet> |
| 583 | const DoublePacket<Packet>& predux_downto4(const DoublePacket<Packet> &a) |
no outgoing calls
no test coverage detected