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

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Larroy committed Feb 10, 2019
1 parent 94ad70b commit bfdc51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/operator_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ inline std::vector<nnvm::NodeEntry> MakeNonlossGradNode(
p->inputs.insert(p->inputs.end(), inputs.begin(), inputs.end());
std::vector<nnvm::NodeEntry> ret;
for (uint32_t i = 0; i < p->num_outputs(); ++i) {
ret.emplace_back(std::move(p), i, 0);
ret.emplace_back(p, i, 0);
}
return ret;
}
Expand Down

0 comments on commit bfdc51a

Please sign in to comment.