| 206 | } |
| 207 | |
| 208 | string SummarizeTensor(const TensorProto& tensor_proto) { |
| 209 | Tensor t; |
| 210 | if (!t.FromProto(tensor_proto)) { |
| 211 | return strings::StrCat( |
| 212 | "<Invalid TensorProto: ", ProtoShortDebugString(tensor_proto), ">"); |
| 213 | } |
| 214 | return t.DebugString(); |
| 215 | } |
| 216 | |
| 217 | string SummarizeFunc(const NameAttrList& func) { |
| 218 | std::vector<string> entries; |
no test coverage detected