| 1661 | } |
| 1662 | |
| 1663 | Status ConcatShape(InferenceContext* c, int num_inputs_to_concat) { |
| 1664 | return ConcatShapeHelper(c, 1 /* start_value_index */, |
| 1665 | 1 + num_inputs_to_concat /* end_value_index */, |
| 1666 | 0 /* dim_index */); |
| 1667 | } |
| 1668 | |
| 1669 | Status ConcatV2Shape(InferenceContext* c) { |
| 1670 | return ConcatShapeHelper(c, 0 /* start_value_index */, |
no test coverage detected