Searched defs:ITensorProxyPtr (Results 1 – 1 of 1) sorted by relevance
414 ITensorProxyPtr(std::nullptr_t) : p_(nullptr) {} in ITensorProxyPtr() function415 ITensorProxyPtr(ITensorProxy* p) : p_(p) {} in ITensorProxyPtr() function416 ITensorProxyPtr(nvinfer1::ITensor* p) : p_(new ITensorProxy(p)) {} in ITensorProxyPtr() function417 ITensorProxyPtr(SimpleITensor* p) : p_(new ITensorProxy(p)) {} in ITensorProxyPtr() function419 ITensorProxyPtr() : p_(new ITensorProxy()) {} in ITensorProxyPtr() function420 ITensorProxyPtr(const nvinfer1::Dims& dims) : p_(new ITensorProxy(dims)) {} in ITensorProxyPtr() function421 ITensorProxyPtr(const std::vector<int>& dims) : p_(new ITensorProxy(dims)) {} in ITensorProxyPtr() function