| 614 | } |
| 615 | |
| 616 | void DumpSubgraphHeader(string* output_file, Node const& node, |
| 617 | const string& node_name) { |
| 618 | Color color = HashStringToColor(node_name); |
| 619 | string label = GetSubgraphLabel(node, node_name); |
| 620 | AppendF(output_file, kSubgraphFmt, node_name, color.AsHexString(), label); |
| 621 | } |
| 622 | |
| 623 | void DumpArray(const Model& model, string* output_file, |
| 624 | const string& array_id) { |
no test coverage detected