| 60 | } |
| 61 | |
| 62 | Status ResizeShapeFn(InferenceContext* c) { |
| 63 | ShapeHandle input; |
| 64 | TF_RETURN_IF_ERROR(c->WithRank(c->input(0), 4, &input)); |
| 65 | return SetOutputToSizedImage(c, c->Dim(input, 0), 1 /* size_input_idx */, |
| 66 | c->Dim(input, 3)); |
| 67 | } |
| 68 | |
| 69 | Status DecodeImageShapeFn(InferenceContext* c) { |
| 70 | ShapeHandle unused; |
no test coverage detected