| 1667 | } |
| 1668 | |
| 1669 | Status ConcatV2Shape(InferenceContext* c) { |
| 1670 | return ConcatShapeHelper(c, 0 /* start_value_index */, |
| 1671 | c->num_inputs() - 1 /* end_value_index */, |
| 1672 | c->num_inputs() - 1 /* dim_index */); |
| 1673 | } |
| 1674 | |
| 1675 | Status QuantizedConcatV2Shape(InferenceContext* c, int num_inputs_to_concat) { |
| 1676 | return ConcatShapeHelper(c, 0 /* start_value_index */, |
nothing calls this directly
no test coverage detected