| 3458 | return operand.builder()->UnaryOp(HloOpcode::kImag, operand); |
| 3459 | } |
| 3460 | XlaOp Sqrt(const XlaOp operand) { |
| 3461 | return operand.builder()->UnaryOp(HloOpcode::kSqrt, operand); |
| 3462 | } |
| 3463 | XlaOp Rsqrt(const XlaOp operand) { |
| 3464 | return operand.builder()->UnaryOp(HloOpcode::kRsqrt, operand); |
| 3465 | } |