Home
last modified time | relevance | path

Searched defs:ITensorProxyPtr (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
H A Dtrt_tensor_proxy.h414 ITensorProxyPtr(std::nullptr_t) : p_(nullptr) {} in ITensorProxyPtr() function
415 ITensorProxyPtr(ITensorProxy* p) : p_(p) {} in ITensorProxyPtr() function
416 ITensorProxyPtr(nvinfer1::ITensor* p) : p_(new ITensorProxy(p)) {} in ITensorProxyPtr() function
417 ITensorProxyPtr(SimpleITensor* p) : p_(new ITensorProxy(p)) {} in ITensorProxyPtr() function
419 ITensorProxyPtr() : p_(new ITensorProxy()) {} in ITensorProxyPtr() function
420 ITensorProxyPtr(const nvinfer1::Dims& dims) : p_(new ITensorProxy(dims)) {} in ITensorProxyPtr() function
421 ITensorProxyPtr(const std::vector<int>& dims) : p_(new ITensorProxy(dims)) {} in ITensorProxyPtr() function