| 3275 | } |
| 3276 | |
| 3277 | XlaOp Or(const XlaOp lhs, const XlaOp rhs, |
| 3278 | absl::Span<const int64> broadcast_dimensions) { |
| 3279 | return lhs.builder()->BinaryOp(HloOpcode::kOr, lhs, rhs, |
| 3280 | broadcast_dimensions); |
| 3281 | } |
| 3282 | |
| 3283 | XlaOp Xor(const XlaOp lhs, const XlaOp rhs, |
| 3284 | absl::Span<const int64> broadcast_dimensions) { |
no test coverage detected