| 105 | } |
| 106 | |
| 107 | TensorWrapDataStrided::TensorWrapDataStrided(const NVCVTensorData &tdata, NVCVTensorDataCleanupFunc cleanup, |
| 108 | void *ctxCleanup) |
| 109 | : m_tdata(tdata) |
| 110 | , m_cleanup(cleanup) |
| 111 | , m_ctxCleanup(ctxCleanup) |
| 112 | { |
| 113 | ValidateTensorBufferStrided(tdata); |
| 114 | } |
| 115 | |
| 116 | TensorWrapDataStrided::~TensorWrapDataStrided() |
| 117 | { |
nothing calls this directly
no test coverage detected