| 3419 | return operand.builder()->UnaryOp(HloOpcode::kExp, operand); |
| 3420 | } |
| 3421 | XlaOp Expm1(const XlaOp operand) { |
| 3422 | return operand.builder()->UnaryOp(HloOpcode::kExpm1, operand); |
| 3423 | } |
| 3424 | XlaOp Floor(const XlaOp operand) { |
| 3425 | return operand.builder()->UnaryOp(HloOpcode::kFloor, operand); |
| 3426 | } |