| 3431 | return operand.builder()->UnaryOp(HloOpcode::kRoundNearestAfz, operand); |
| 3432 | } |
| 3433 | XlaOp Log(const XlaOp operand) { |
| 3434 | return operand.builder()->UnaryOp(HloOpcode::kLog, operand); |
| 3435 | } |
| 3436 | XlaOp Log1p(const XlaOp operand) { |
| 3437 | return operand.builder()->UnaryOp(HloOpcode::kLog1p, operand); |
| 3438 | } |