Polish english

emailweixu-patch-1
Yang Yu 7 years ago
parent 38bb7d3e93
commit ef55a8f608

@ -314,12 +314,12 @@ class ParallelDoGradOpDescMaker : public framework::SingleGradOpDescMaker {
std::vector<std::string> og_names; std::vector<std::string> og_names;
for (auto &og_name : this->OutputGrad(output_param)) { for (auto &og_name : this->OutputGrad(output_param)) {
if (all_inputs_in_grad_blocks.count(og_name) != 0) { if (all_inputs_in_grad_blocks.count(og_name) != 0) {
// there is some gradient operator needs the og, make this og as the // there are some gradient operators who need the OG. So make this
// input of parallel.do // OG as an input of parallel.do
// if there is no operator need this og, just do not make this og as
// input.
og_names.push_back(og_name); og_names.push_back(og_name);
} }
// else, there is no operator who need the OG. Do not use this OG as
// an input
} }
grad->SetInput(framework::GradVarName(output_param), og_names); grad->SetInput(framework::GradVarName(output_param), og_names);
} }

Loading…
Cancel
Save