Skip to content

Commit

Permalink
Fixed a spelling error in the timer report.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-cohere committed Oct 18, 2021
1 parent 7413c42 commit 8ccbf05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tdytimers.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ PetscErrorCode TDyWriteTimingProfile(const char* filename) {
const char* disc_name = TDyDiscretizations[md->discretization];
FILE* f = fopen("tdycore_profile.csv", "a");
fprintf(f, "METADATA\n");
fprintf(f, "Mode,Discretiztion,NumProc,NumCells\n");
fprintf(f, "Mode,Discretization,NumProc,NumCells\n");
fprintf(f, "%s,%s,%d,%d", mode_name, disc_name, md->num_proc, num_cells);
fclose(f);
} else { // rank > 0
Expand Down

0 comments on commit 8ccbf05

Please sign in to comment.