From this page on TF-TRT:
https://docs.nvidia.com/deeplearning/dgx/integrate-tf-trt/index.html#introduction
A tensoflow graph can be converted by TensorRT by using “trt.create_inference_graph” and convert trt_graph back to TensorFlow graph to run inference in Tensorflow inference pipeline.
All the examples I see on the page is using tensorflow python inference. My question is if we can use TensorFlow C++ inference with TF-TRT? If we can, is there any sample I can refer to?