| 3034 | } |
| 3035 | |
| 3036 | XlaOp Tuple(XlaBuilder* builder, absl::Span<const XlaOp> elements) { |
| 3037 | return builder->Tuple(elements); |
| 3038 | } |
| 3039 | |
| 3040 | XlaOp GetTupleElement(const XlaOp tuple_data, int64 index) { |
| 3041 | return tuple_data.builder()->GetTupleElement(tuple_data, index); |