| 3416 | } |
| 3417 | |
| 3418 | XlaOp Exp(const XlaOp operand) { |
| 3419 | return operand.builder()->UnaryOp(HloOpcode::kExp, operand); |
| 3420 | } |
| 3421 | XlaOp Expm1(const XlaOp operand) { |
| 3422 | return operand.builder()->UnaryOp(HloOpcode::kExpm1, operand); |
| 3423 | } |
no test coverage detected