-
Notifications
You must be signed in to change notification settings - Fork 33
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
Tupek/additional profiling #1197
Conversation
{ | ||
} | ||
#endif | ||
|
||
/// finds tau s.t. (z + tau*d)^2 = trSize^2 | ||
void project_to_boundary_with_coefs(mfem::Vector& z, const mfem::Vector& d, double trSize, double zz, double zd, | ||
void projectToBoundaryWithCoefs(mfem::Vector& z, const mfem::Vector& d, double trSize, double zz, double zd, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the correction in capitalization!
563e87f
to
765219e
Compare
/// max cumulative iterations | ||
size_t maxCumulativeIteration = 1; | ||
size_t max_cumulative_iteration = 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this setting the number of cumulative CG iterations before the precondtioner is updated? If so, I suggest the name be more descriptive, even if it ends up long.
/style |
/style |
Add caliper instrumentation, change some names to match convention, work on expanding nonlinear test.