| 51 | } |
| 52 | |
| 53 | Status ReadVariableShapeFn(InferenceContext* c) { |
| 54 | ShapeAndType shape_and_type; |
| 55 | TF_RETURN_IF_ERROR(ValidateVariableResourceHandle(c, 0, &shape_and_type)); |
| 56 | c->set_output(0, shape_and_type.shape); |
| 57 | return Status::OK(); |
| 58 | } |
| 59 | |
| 60 | Status CreateAssignShapeFn(InferenceContext* c) { |
| 61 | ShapeAndType handle_shape_and_type; |
nothing calls this directly
no test coverage detected