| 1652 | } |
| 1653 | |
| 1654 | XlaOp XlaBuilder::Clamp(XlaOp min, XlaOp operand, XlaOp max) { |
| 1655 | return TernaryOp(HloOpcode::kClamp, min, operand, max); |
| 1656 | } |
| 1657 | |
| 1658 | XlaOp XlaBuilder::Map(absl::Span<const XlaOp> operands, |
| 1659 | const XlaComputation& computation, |
no outgoing calls