| 3410 | } |
| 3411 | |
| 3412 | XlaOp Atan2(const XlaOp lhs, const XlaOp rhs, |
| 3413 | absl::Span<const int64> broadcast_dimensions) { |
| 3414 | return lhs.builder()->BinaryOp(HloOpcode::kAtan2, lhs, rhs, |
| 3415 | broadcast_dimensions); |
| 3416 | } |
| 3417 | |
| 3418 | XlaOp Exp(const XlaOp operand) { |
| 3419 | return operand.builder()->UnaryOp(HloOpcode::kExp, operand); |