-
Notifications
You must be signed in to change notification settings - Fork 5
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
Less prints to output #9
Comments
In general there is a lot of |
The logging function should also automatically include configurable additional information:
|
@rubenhorn There is already a way to get the MPI rank anywhere, without passing it everywhere or calling MPI_comm_rank excessively: Note that it will always return the rank relative to the PinT domain (i.e. temporal subdomain if the simulation is time parallel), not the rank in MPI_COMM_WORLD, but I guess that is actually desired here. (For writing output to the logging system from time parallel simulations, the 'time local' rank AND the PinT domain number should be printed, not the global rank) |
currently every rank prints "Run CouetteScenario", "Finish CouetteScenario::initSolvers()" and "Finish CouetteScenario::shutdown() Shut down CouetteScenario" to the output. It floods output and makes manual scanning very cumbersome, and writes huge files with no actual data. We should remove these prints.
The text was updated successfully, but these errors were encountered: