Overload to call Or with 3 or more operands. As with `And`, we need the following complicated overload set to handle the default arg in the `Or` overload above.
| 1655 | // following complicated overload set to handle the default arg in the `Or` |
| 1656 | // overload above. |
| 1657 | inline XlaOp Or(XlaOp op1, XlaOp op2, XlaOp op3) { |
| 1658 | return Or(op1, Or(op2, op3)); |
| 1659 | } |
| 1660 | template <typename... XlaOpTs> |
| 1661 | XlaOp Or(XlaOp op1, XlaOp op2, XlaOp op3, const XlaOpTs&... operands) { |
| 1662 | return Or(op1, Or(op2, Or(op3, operands...))); |
no outgoing calls