From 4e693f688bcf24930a05c3ba3471b0fcc84ea276 Mon Sep 17 00:00:00 2001 From: Tamas Bela Feher Date: Wed, 18 Dec 2019 17:52:23 +0100 Subject: [PATCH] Remove unnecessary namespace specifier --- tensorflow/compiler/tf2tensorrt/convert/utils.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tensorflow/compiler/tf2tensorrt/convert/utils.cc b/tensorflow/compiler/tf2tensorrt/convert/utils.cc index ea5ed526ddd..f2a19dd2480 100644 --- a/tensorflow/compiler/tf2tensorrt/convert/utils.cc +++ b/tensorflow/compiler/tf2tensorrt/convert/utils.cc @@ -114,8 +114,7 @@ string DebugString(const nvinfer1::ITensor& tensor) { return StrCat("nvinfer1::ITensor(@", reinterpret_cast(&tensor), ", name=", tensor.getName(), ", dtype=", DebugString(tensor.getType()), - ", dims=", - tensorflow::tensorrt::DebugString(tensor.getDimensions()), ")"); + ", dims=", DebugString(tensor.getDimensions()), ")"); } #endif