Fix style

This commit is contained in:
Tamas Bela Feher 2019-12-18 22:19:37 +01:00
parent 4e693f688b
commit 815a6cb1b4

View File

@ -652,8 +652,8 @@ size_t TRT_ShapedWeights::size_bytes() const {
} }
string TRT_ShapedWeights::DebugString() const { string TRT_ShapedWeights::DebugString() const {
return StrCat("TRT_ShapedWeights(shape=", return StrCat(
tensorflow::tensorrt::DebugString(shape_), "TRT_ShapedWeights(shape=", tensorflow::tensorrt::DebugString(shape_),
", type=", tensorflow::tensorrt::DebugString(type_), ", type=", tensorflow::tensorrt::DebugString(type_),
", values=", reinterpret_cast<uintptr_t>(GetValues()), ")"); ", values=", reinterpret_cast<uintptr_t>(GetValues()), ")");
} }