This commit is contained in:
Michael Zhang 2023-11-25 01:50:24 -06:00
parent 755185ca26
commit d477611892
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,6 @@
.PHONY: run clean
CFLAGS += -g
CFLAGS += -g -pg
# CFLAGS += -DFMT_HEADER_ONLY -O3
# LDFLAGS += $(shell pkg-config --libs fmt)

View file

@ -224,8 +224,10 @@ int main(int argc, char **argv) {
// STEP 5 TIMER STARTS HERE
MPI_Barrier(MPI_COMM_WORLD);
double step_5_start_time;
if (rank == 0)
if (rank == 0) {
step_5_start_time = MPI_Wtime();
printf("STARTING STEP 5: %0.04fs\n", step_5_start_time - step_2_start_time);
}
// The processes perform the transfers of non-local labels and updates of
// local labels until convergence.