| 3357 | } |
| 3358 | |
| 3359 | XlaOp CrossReplicaSum(const XlaOp operand, |
| 3360 | absl::Span<const ReplicaGroup> replica_groups) { |
| 3361 | return operand.builder()->CrossReplicaSum(operand, replica_groups); |
| 3362 | } |
| 3363 | |
| 3364 | XlaOp AllReduce(const XlaOp operand, const XlaComputation& computation, |
| 3365 | absl::Span<const ReplicaGroup> replica_groups, |
nothing calls this directly
no test coverage detected