| 298 | } |
| 299 | |
| 300 | Tensor::Key::Key(const nvcv::Tensor::Requirements &reqs) |
| 301 | : Key(nvcv::TensorShape(reqs.shape, reqs.rank, reqs.layout), static_cast<nvcv::DataType>(reqs.dtype)) |
| 302 | { |
| 303 | } |
| 304 | |
| 305 | Tensor::Key::Key(const nvcv::TensorShape &shape, nvcv::DataType dtype) |
| 306 | : m_shape(std::move(shape)) |
nothing calls this directly
no test coverage detected