-
Notifications
You must be signed in to change notification settings - Fork 128
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
[WIP] Extending the BP4 engine to allow data transfers through SCR #3392
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: Adam Moody <moody20@llnl.gov>
Co-authored-by: Adam Moody <moody20@llnl.gov>
Do you have a FindSCR.cmake? Also, does the test actually test proper functioning of SCR? That may be what the scr_complete variable represents, but it isn't actually examined in the test proper. |
Oops I forgot to add it to the first commit
I am actually not sure how to examine if SCR is doing anything. SCR_Start_output(fname.c_str(), SCR_FLAG_CHECKPOINT);
// Engine Open
...
// Engine Close
SCR_Complete_output(scr_valid); All the variables between the two calls are tracked with SCR inside ADIOS2. We might want to do some smarter things (like detect is SCR_Start_output has been called and not error in case it has not but just fall back to not using it or be able to decide for which variable we want to use SCR), but we can discuss them today. |
Co-authored-by: Adam Moody <moody20@llnl.gov>
77f52ee
to
9f892c3
Compare
605c660
to
bd77fda
Compare
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.
Just minor suggestions. Looks great, once this PR is merged it would be good to add documentation (./docs) for the readthedocs user guide.
@@ -20,6 +20,10 @@ | |||
#include <ctime> | |||
#include <iostream> | |||
|
|||
#ifdef ADIOS2_HAVE_SCR | |||
#include "scr.h" |
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.
#include <scr.h>
would help identify it as an external header.
|
||
#include "../SmallTestData.h" | ||
|
||
#include "scr.h" |
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.
Similarly here #include <scr.h>
would help identify it as an external header. Thanks for adding a test, BTW.
We are looking at correctness and performance for now. Once we decide to merge it, I will add documentation for it. We are not there yet. Sure about the header. If we decide to merge it, I'll change it. |
Adding over PR #3294
Test for ADIOS2 with SCR for 1D, 2D, 10D, Sync and Deferred. The new API will need to initialize and finalize SCR and nothing else. Example:
SCR works only for MPI codes. The library needs to be initialized after
MPI_Init
and finalized beforeMPI_Finalize
.If the flag is set without SCR being initialized an error will occur. If SCR is initialized before MPI was initialized an error will occur.
Currently supported only in BP4