Skip to content
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

Merged
merged 3 commits into from
Mar 24, 2025

Conversation

cducher
Copy link
Contributor

@cducher cducher commented Feb 14, 2025

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

@cducher cducher self-assigned this Feb 14, 2025
@codecov-commenter
Copy link

codecov-commenter commented Feb 18, 2025

Codecov Report

Attention: Patch coverage is 78.53309% with 120 lines in your changes missing coverage. Please review.

Project coverage is 48.92%. Comparing base (6ce826a) to head (4e53633).
Report is 4 commits behind head on feature/nwp-emulator-grib-source.

Files with missing lines Patch % Lines
src/nwp_emulator/config_reader.cc 72.37% 71 Missing ⚠️
src/nwp_emulator/config_reader_funcs.cc 82.87% 31 Missing ⚠️
src/nwp_emulator/nwp_emulator.cc 85.71% 10 Missing ⚠️
tests/nwp_emulator/nwp_emulator_plugin.h 70.00% 3 Missing ⚠️
src/nwp_emulator/data_reader.h 0.00% 2 Missing ⚠️
src/nwp_emulator/config_reader.h 93.75% 1 Missing ⚠️
src/nwp_emulator/nwp_data_provider.cc 90.00% 1 Missing ⚠️
tests/nwp_emulator/nwp_emulator_plugin.cc 92.30% 1 Missing ⚠️
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.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Collaborator

@dsarmany dsarmany left a 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.

* @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 {
Copy link
Collaborator

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;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use eckit::Log::info().

Copy link
Contributor Author

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.

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) {
Copy link
Collaborator

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).

}
plume::Manager::negotiate(offers);
plumeData_.createInt("NSTEP", 0); /// Initialise parameters
for (size_t i = 0; i < fields.size(); ++i) {
Copy link
Collaborator

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.

Copy link
Collaborator

@antons-it antons-it left a 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";
Copy link
Collaborator

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

@cducher cducher requested a review from dsarmany March 18, 2025 17:10
@cducher cducher force-pushed the feature/nwp-emulator-grib-source branch 2 times, most recently from dacb4aa to ffe3b93 Compare March 21, 2025 10:02
@cducher cducher force-pushed the feature/nwp-emulator branch from 0e01528 to 8e78367 Compare March 24, 2025 14:00
@cducher cducher force-pushed the feature/nwp-emulator-grib-source branch from ffe3b93 to 6ce826a Compare March 24, 2025 14:22
@cducher cducher force-pushed the feature/nwp-emulator branch from 772e3d8 to 407622c Compare March 24, 2025 14:32
@cducher cducher force-pushed the feature/nwp-emulator branch from 222a2d5 to 4e53633 Compare March 24, 2025 14:43
@cducher cducher merged commit 06a0f01 into feature/nwp-emulator-grib-source Mar 24, 2025
4 checks passed
@cducher cducher deleted the feature/nwp-emulator branch March 24, 2025 14:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants