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

Commit

Permalink
CR
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy committed May 20, 2019
1 parent aac8dc7 commit 5b24c82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/executor/infer_graph_attr_pass.cc
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,9 @@ nnvm::Graph InferShapeAttr(nnvm::Graph &&ret,
}
if (dispatch_mode_name) {
for (size_t i = node_start; i < node_end; i++) {
if (dispatch_modes[i] == DispatchMode::kUndefined)
if (dispatch_modes[i] == DispatchMode::kUndefined) {
++num_unknown;
}
}
}
++i;
Expand Down

0 comments on commit 5b24c82

Please sign in to comment.