| 1030 | } // namespace |
| 1031 | |
| 1032 | Status ShapeVerifier::HandleGather(HloInstruction* gather) { |
| 1033 | return CheckShape( |
| 1034 | gather, |
| 1035 | ShapeInference::InferGatherShape( |
| 1036 | gather->operand(0)->shape(), gather->operand(1)->shape(), |
| 1037 | gather->gather_dimension_numbers(), gather->gather_slice_sizes())); |
| 1038 | } |
| 1039 | |
| 1040 | Status ShapeVerifier::HandleScatter(HloInstruction* scatter) { |
| 1041 | return CheckShape( |
no test coverage detected