| 211 | } |
| 212 | |
| 213 | Status UnchangedShape(shape_inference::InferenceContext* c) { |
| 214 | c->set_output(0, c->input(0)); |
| 215 | auto* handle_data = c->input_handle_shapes_and_types(0); |
| 216 | if (handle_data != nullptr) { |
| 217 | c->set_output_handle_shapes_and_types(0, *handle_data); |
| 218 | } |
| 219 | return Status::OK(); |
| 220 | } |
| 221 | |
| 222 | Status MatMulShape(shape_inference::InferenceContext* c) { |
| 223 | ShapeHandle a; |
no test coverage detected