| 135 | } |
| 136 | |
| 137 | string PrintString(const string& str) { |
| 138 | return strings::StrCat("\"", absl::CEscape(str), "\""); |
| 139 | } |
| 140 | |
| 141 | string PrintTensorShape(const TensorShapeProto& shape_proto) { |
| 142 | PartialTensorShape shape(shape_proto); |
no test coverage detected