-
Notifications
You must be signed in to change notification settings - Fork 9
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
#2130: Add spec for skipped and identical phases #2137
Conversation
488faa8
to
4dcc651
Compare
Pipelines resultsPR tests (clang-9, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (clang-11, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (gcc-9, ubuntu, mpich, zoltan, json schema test) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (gcc-10, ubuntu, openmpi, no LB) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (clang-12, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (clang-13, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (clang-14, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (clang-10, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (gcc-12, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (gcc-11, ubuntu, mpich, trace runtime, coverage) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (gcc-8, ubuntu, mpich, address sanitizer) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (nvidia cuda 11.0, ubuntu, mpich) Build for 4dcc651 (2023-04-25 16:25:21 UTC)
PR tests (nvidia cuda 11.2, ubuntu, mpich) Build for b9fe835 (2023-05-10 08:56:22 UTC)
PR tests (intel icpc, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
PR tests (nvidia cuda 11.2, gcc-9, ubuntu, mpich) Build for 526a6ed (2023-05-16 12:34:09 UTC)
|
4dcc651
to
becd546
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.
I think this looks good. The next step is to use this data to determine for LBDataRestartReader when a phase is identical or skipped and use to to orchestrate the object distribution.
becd546
to
6d43913
Compare
bc4d0b9
to
614a1d2
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.
There are test failures that need to be resolved.
325dcdb
to
b9fe835
Compare
b9fe835
to
beaf3c8
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.
Should all the checks in the tests really be ASSERT_*
or should some be EXPECT_*
? I recommend only using ASSERT_*
when the checks that follow are no longer valid (and might segfault or do something else bad). Using EXPECT_*
gives the opportunity to see what independent checks are failing later on in the test.
beaf3c8
to
ea40f84
Compare
ea40f84
to
526a6ed
Compare
@nlslatt Yes, they should be |
Closes #2130