| 3443 | return operand.builder()->UnaryOp(HloOpcode::kClz, operand); |
| 3444 | } |
| 3445 | XlaOp Cos(const XlaOp operand) { |
| 3446 | return operand.builder()->UnaryOp(HloOpcode::kCos, operand); |
| 3447 | } |
| 3448 | XlaOp Sin(const XlaOp operand) { |
| 3449 | return operand.builder()->UnaryOp(HloOpcode::kSin, operand); |
| 3450 | } |
no test coverage detected