| 3422 | return operand.builder()->UnaryOp(HloOpcode::kExpm1, operand); |
| 3423 | } |
| 3424 | XlaOp Floor(const XlaOp operand) { |
| 3425 | return operand.builder()->UnaryOp(HloOpcode::kFloor, operand); |
| 3426 | } |
| 3427 | XlaOp Ceil(const XlaOp operand) { |
| 3428 | return operand.builder()->UnaryOp(HloOpcode::kCeil, operand); |
| 3429 | } |
no test coverage detected