Skip to content

Commit

Permalink
Reduce precision in output
Browse files Browse the repository at this point in the history
  • Loading branch information
stanmoore1 committed Nov 21, 2017
1 parent 4289a3d commit 648ab45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/space-time-stack/kp_space_time_stack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ struct Allocations {
#endif
{
std::stringstream ss;
ss << std::fixed << std::setprecision(2);
ss << std::fixed << std::setprecision(1);
ss << "MAX MEMORY ALLOCATED: " << double(total_size)/1024.0 << " kB" << '\n'; // convert bytes to kB
#ifdef USE_MPI
ss << "MPI RANK WITH MAX MEMORY: " << rank << '\n';
Expand Down

0 comments on commit 648ab45

Please sign in to comment.