| 46 | } |
| 47 | |
| 48 | Tensor ConvertTo(Tensor &input, nvcv::DataType dtype, float scale, float offset, std::optional<Stream> pstream) |
| 49 | { |
| 50 | Tensor output = Tensor::Create(input.shape(), dtype); |
| 51 | |
| 52 | return ConvertToInto(output, input, scale, offset, pstream); |
| 53 | } |
| 54 | |
| 55 | } // namespace |
| 56 |
nothing calls this directly
no test coverage detected