| 49 | } |
| 50 | |
| 51 | Tensor Resize(Tensor &input, const Shape &out_shape, NVCVInterpolationType interp, std::optional<Stream> pstream) |
| 52 | { |
| 53 | Tensor output = Tensor::Create(out_shape, input.dtype(), input.shape().layout()); |
| 54 | |
| 55 | return ResizeInto(output, input, interp, pstream); |
| 56 | } |
| 57 | |
| 58 | ImageBatchVarShape ResizeVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, |
| 59 | NVCVInterpolationType interp, std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected