| 3455 | return operand.builder()->UnaryOp(HloOpcode::kReal, operand); |
| 3456 | } |
| 3457 | XlaOp Imag(const XlaOp operand) { |
| 3458 | return operand.builder()->UnaryOp(HloOpcode::kImag, operand); |
| 3459 | } |
| 3460 | XlaOp Sqrt(const XlaOp operand) { |
| 3461 | return operand.builder()->UnaryOp(HloOpcode::kSqrt, operand); |
| 3462 | } |