| 549 | } |
| 550 | |
| 551 | Status ShapeVerifier::HandleGetTupleElement(HloInstruction* get_tuple_element) { |
| 552 | return CheckShape(get_tuple_element, |
| 553 | ShapeInference::InferGetTupleElementShape( |
| 554 | get_tuple_element->operand(0)->shape(), |
| 555 | get_tuple_element->tuple_index())); |
| 556 | } |
| 557 | |
| 558 | namespace { |
| 559 | Status SameElementTypesForOperandsAndToApplyParameters( |
no test coverage detected