-
Notifications
You must be signed in to change notification settings - Fork 16
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
HPCG benchmark #177
HPCG benchmark #177
Conversation
history removed
matrix test and convergence test split functions between files
use correction instead of full additive schwarz
added all deps for multithreading
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 PR.
See my comments.
You have re-formatted/re-indented many files, some of which should not contain actual changes. Please, edit the files so that you modify only the lines really needed.
@HRvanElderen The code looks much better now! But tests are failing. |
@fverdugo Tests should be working now, except the tests in HPCG that require the new functions in PartitionedSolvers. |
The HPCG tests should work the commit version of PartitionedSolvers, not the registered version. See e.g., how I am using the commit version of PartitionedArrays when testing PartitionedSolvers:
For HPCG you should add something like Pkg.develop(path=".")
Pkg.develop(path="./PartitionedSolvers") around here |
@HRvanElderen Thanks for this nice addition. In a separate one, we will document how to use the benchmark. |
HPCG benchmark package.
Added gauss_seidel_sweep_zero! and additive_schwarz_correction_partition to PartitionedSolvers.
There should not be any changes to PartitionedArrays.