Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix adam perormance #372

Merged
merged 5 commits into from
Sep 6, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merging
  • Loading branch information
Reza Yazdani committed Sep 6, 2020
commit 6692cedfb6a710b5fe478a846e3a1ba8108f1a7c
2 changes: 1 addition & 1 deletion csrc/adam/cpu_adam.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ int ds_adam_step(int optimizer_id,
std::static_pointer_cast<Adam_Optimizer>(s_optimizers[optimizer_id]);

opt->Step_8(params_ptr, grads_ptr, exp_avg_ptr, exp_avg_sq_ptr, params_c.size(0));


return 0;
}
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.