Skip to content

Commit

Permalink
Merge pull request #34 from izzet/fix-summary-typo
Browse files Browse the repository at this point in the history
Fix Typo in Summary
  • Loading branch information
wangvsa authored Dec 10, 2024
2 parents 67467fb + 310ab57 commit 0aa0eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/recorder-summary.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ void print_metadata(RecorderReader* reader) {
printf("========Recorder Tracing Parameters========\n");
printf("Tracing start time: %s\n", tmbuf);
printf("Total processes: %d\n", meta->total_ranks);
printf("POSIX tracing: %s\n", meta->posix_tracing?"Enabled":"Dsiabled");
printf("MPI tracing: %s\n", meta->mpi_tracing?"Enabled":"Dsiabled");
printf("MPI-IO tracing: %s\n", meta->mpiio_tracing?"Enabled":"Dsiabled");
printf("HDF5 tracing: %s\n", meta->hdf5_tracing?"Enabled":"Dsiabled");
printf("POSIX tracing: %s\n", meta->posix_tracing?"Enabled":"Disabled");
printf("MPI tracing: %s\n", meta->mpi_tracing?"Enabled":"Disabled");
printf("MPI-IO tracing: %s\n", meta->mpiio_tracing?"Enabled":"Disabled");
printf("HDF5 tracing: %s\n", meta->hdf5_tracing?"Enabled":"Disabled");
printf("Store thread id: %s\n", meta->store_tid?"True":"False");
printf("Store call depth: %s\n", meta->store_call_depth?"True":"False");
printf("Timestamp compression: %s\n", meta->ts_compression?"True":"False");
Expand Down

0 comments on commit 0aa0eaf

Please sign in to comment.