Skip to content

Commit

Permalink
Fixing print messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
massimim committed Oct 9, 2023
1 parent 45e82ba commit a79ef8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions benchmarks/lbm/src/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ auto Config::toString() const -> std::string
s << ".......... reportFile " << c.reportFile << std::endl;
s << "............ gridType " << c.gridType << std::endl;

s << ".......... spaceCurve " << c.spaceCurveCli.getStringOptions() << std::endl;
s << "................. occ " << c.occCli.getStringOptions() << std::endl;
s << "........ transferMode " << c.transferModeCli.getStringOptions() << std::endl;
s << "..... stencilSemantic " << c.stencilSemanticCli.getStringOptions() << std::endl;
s << ".......... spaceCurve " << c.spaceCurveCli.getStringOption() << std::endl;
s << "................. occ " << c.occCli.getStringOption() << std::endl;
s << "........ transferMode " << c.transferModeCli.getStringOption() << std::endl;
s << "..... stencilSemantic " << c.stencilSemanticCli.getStringOption() << std::endl;

s << "\n==>[LBM Implementation]" << std::endl;
s << "............. lattice " << c.lattice << std::endl;
Expand Down

0 comments on commit a79ef8b

Please sign in to comment.