Skip to content

Commit

Permalink
Fix memory info
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Feb 13, 2024
1 parent eeaff09 commit b647475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/stressTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void stressTestInfo(const CmdOptions& opts,

if (threads * avgMiB < 1024)
std::cout << std::fixed << std::setprecision(2) << avgMiB << " MiB = "
<< std::fixed << std::setprecision(2) << threads * avgGiB << " MiB.\n";
<< std::fixed << std::setprecision(2) << threads * avgMiB << " MiB.\n";
else
std::cout << std::fixed << std::setprecision(2) << avgMiB << " MiB = "
<< std::fixed << std::setprecision(2) << threads * avgGiB << " GiB.\n";
Expand Down

0 comments on commit b647475

Please sign in to comment.