Skip to content

Commit

Permalink
Fix: report names for mres apps
Browse files Browse the repository at this point in the history
  • Loading branch information
massimim committed Dec 9, 2024
1 parent 4bcb478 commit b0cca07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/lbmMultiRes/lbmMultiRes.h
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ void runNonUniformLBM(Neon::domain::mGrid& grid,
report.addMember("ENumVoxels", gridDim.rMul());

//output
report.write("MultiResLBM_naive" + reportSuffix(), true);
report.write("MultiResLBM_naive_" + reportSuffix(), true);

//post process
if (!params.benchmark) {
Expand Down
2 changes: 1 addition & 1 deletion apps/lbmMultiResDisg/lbmMultiRes.h
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ void runNonUniformLBM(Neon::domain::mGrid& grid,
report.addMember("ENumVoxels", gridDim.rMul());

//output
report.write("MultiResLBM_disg" + reportSuffix(), true);
report.write("MultiResLBM_disag_" + reportSuffix(), true);

//post process
if (!params.benchmark) {
Expand Down

0 comments on commit b0cca07

Please sign in to comment.