Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy committed Jul 26, 2019
1 parent c0980a8 commit 2f0cb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nnvm/graph_dump.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ std::string GraphDump(const std::vector<NodeEntry>& output_nodes) {
g.outputs = output_nodes;
auto& indexed_graph = g.indexed_graph();
for (size_t i = 0; i < indexed_graph.num_nodes(); ++i) {
const IndexedGraph::Node& idst= indexed_graph[i];
const IndexedGraph::Node& idst = indexed_graph[i];
for (const IndexedGraph::NodeEntry& input : idst.inputs) {
const Node& dst = (*idst.source);
const IndexedGraph::Node& isrc = indexed_graph[input.node_id];
Expand Down

0 comments on commit 2f0cb37

Please sign in to comment.