-
Notifications
You must be signed in to change notification settings - Fork 1
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
Added emulator tool #4
Added emulator tool #4
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## feature/nwp-emulator-grib-source #4 +/- ##
=====================================================================
+ Coverage 30.51% 48.92% +18.41%
=====================================================================
Files 48 55 +7
Lines 1904 2475 +571
Branches 128 241 +113
=====================================================================
+ Hits 581 1211 +630
+ Misses 1323 1264 -59 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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 please check if the range-based for loop works. Otherwise it is great! Thank you.
src/nwp_emulator/nwp_emulator.cc
Outdated
* @class NWPEmulator | ||
* @brief Emulates a model run and makes data available at each time step to facilitate Plume and plugins testing. | ||
*/ | ||
class NWPEmulator : public atlas::AtlasTool { |
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.
Worth sticking a final
here?
} | ||
|
||
eckit::mpi::comm().barrier(); | ||
std::cout << "Process " << rank << " finished..." << std::endl; |
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.
Use eckit::Log::info()
.
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.
As mentioned, I use the standard output here to see some logging from all processes as with eckit only the root writes to the standard output.
src/nwp_emulator/nwp_emulator.cc
Outdated
plume::Protocol offers; /// Define data offered by Plume | ||
offers.offerInt("NSTEP", "always", "Simulation Step"); | ||
auto fields = dataProvider.getModelFieldSet(); | ||
for (size_t i = 0; i < fields.size(); ++i) { |
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.
Can't we just use for (const auto& field : fields)
.
src/nwp_emulator/nwp_emulator.cc
Outdated
} | ||
plume::Manager::negotiate(offers); | ||
plumeData_.createInt("NSTEP", 0); /// Initialise parameters | ||
for (size_t i = 0; i < fields.size(); ++i) { |
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.
Same as above, use range-based for loop.
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.
It looks good to me. Many thanks!
std::string usage() override { | ||
return name() + | ||
" [--grib-src=<path> | --config-src=<path>] [--plume-cfg=<path>] [OPTION]... [--help]\n" | ||
" --plume-cfg is optional, pass it to run Plume, else the emulator will do a dry run\n"; |
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.
nice to have the "dry-run" option
dacb4aa
to
ffe3b93
Compare
0e01528
to
8e78367
Compare
ffe3b93
to
6ce826a
Compare
772e3d8
to
407622c
Compare
222a2d5
to
4e53633
Compare
This PR contains the Atlas emulator tool implementation, which makes use of the GRIB reader reviewed in this PR.
/!\ there is a parallelisation bug in the paramBuffer broadcast of the GRIB reader, so running with 3, or 5+ processes do not work at the moment. You can try this emulator with 1,2, or 4 processes at the moment. UPDATE: this is fixed in the GRIB PR