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