Skip to content

Commit 702e98a

Browse files
committed
indent
1 parent 138eed9 commit 702e98a

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/t8_forest/t8_forest.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,7 +3033,7 @@ t8_forest_commit (t8_forest_t forest)
30333033
if (forest->profile != NULL) {
30343034
/* If profiling is enabled, we measure the runtime of commit */
30353035
#if T8_ENABLE_PROFILE_BARRIER
3036-
sc_MPI_Barrier(forest->mpicomm);
3036+
sc_MPI_Barrier (forest->mpicomm);
30373037
#endif
30383038
forest->profile->commit_runtime = sc_MPI_Wtime ();
30393039
}
@@ -3251,7 +3251,7 @@ t8_forest_commit (t8_forest_t forest)
32513251
if (forest->profile != NULL) {
32523252
/* If profiling is enabled, we measure the runtime of commit */
32533253
#if T8_ENABLE_PROFILE_BARRIER
3254-
sc_MPI_Barrier(forest->mpicomm);
3254+
sc_MPI_Barrier (forest->mpicomm);
32553255
#endif
32563256
forest->profile->commit_runtime = sc_MPI_Wtime () - forest->profile->commit_runtime;
32573257
}

src/t8_forest/t8_forest_balance.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ t8_forest_balance (t8_forest_t forest, int repartition)
165165

166166
if (forest->profile != NULL) {
167167
#if T8_ENABLE_PROFILE_BARRIER
168-
sc_MPI_Barrier(forest->mpicomm);
168+
sc_MPI_Barrier (forest->mpicomm);
169169
#endif
170170
/* Profiling is enable, so we measure the runtime of balance */
171171
forest->profile->balance_runtime = -sc_MPI_Wtime ();
@@ -289,7 +289,7 @@ t8_forest_balance (t8_forest_t forest, int repartition)
289289
if (forest->profile != NULL) {
290290
/* Profiling is enabled, so we measure the runtime of balance. */
291291
#if T8_ENABLE_PROFILE_BARRIER
292-
sc_MPI_Barrier(forest->mpicomm);
292+
sc_MPI_Barrier (forest->mpicomm);
293293
#endif
294294
forest->profile->balance_runtime += sc_MPI_Wtime ();
295295
forest->profile->balance_rounds = count_rounds;

src/t8_forest/t8_forest_ghost.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1552,7 +1552,7 @@ t8_forest_ghost_create_ext (t8_forest_t forest, int unbalanced_version)
15521552
if (forest->profile != NULL) {
15531553
/* If profiling is enabled, we measure the runtime of ghost_create */
15541554
#if T8_ENABLE_PROFILE_BARRIER
1555-
sc_MPI_Barrier(forest->mpicomm);
1555+
sc_MPI_Barrier (forest->mpicomm);
15561556
#endif
15571557
forest->profile->ghost_runtime = -sc_MPI_Wtime ();
15581558
/* DO NOT DELETE THE FOLLOWING line.
@@ -1612,7 +1612,7 @@ t8_forest_ghost_create_ext (t8_forest_t forest, int unbalanced_version)
16121612
if (forest->profile != NULL) {
16131613
/* If profiling is enabled, we measure the runtime of ghost_create */
16141614
#if T8_ENABLE_PROFILE_BARRIER
1615-
sc_MPI_Barrier(forest->mpicomm);
1615+
sc_MPI_Barrier (forest->mpicomm);
16161616
#endif
16171617
forest->profile->ghost_runtime += sc_MPI_Wtime ();
16181618
/* We also store the number of ghosts and remotes */

src/t8_forest/t8_forest_partition.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ t8_forest_partition_create_offsets (t8_forest_t forest)
9393
if (forest->profile != NULL) {
9494
/* If profiling is enabled, we measure the runtime of partition */
9595
#if T8_ENABLE_PROFILE_BARRIER
96-
sc_MPI_Barrier(forest->mpicomm);
96+
sc_MPI_Barrier (forest->mpicomm);
9797
#endif
9898
forest->profile->forest_offsets_runtime = -sc_MPI_Wtime ();
9999
}
@@ -124,7 +124,7 @@ t8_forest_partition_create_offsets (t8_forest_t forest)
124124
if (forest->profile != NULL) {
125125
/* If profiling is enabled, we measure the runtime of partition */
126126
#if T8_ENABLE_PROFILE_BARRIER
127-
sc_MPI_Barrier(forest->mpicomm);
127+
sc_MPI_Barrier (forest->mpicomm);
128128
#endif
129129
forest->profile->forest_offsets_runtime += sc_MPI_Wtime ();
130130
}
@@ -273,7 +273,7 @@ t8_forest_partition_create_first_desc (t8_forest_t forest)
273273
if (forest->profile != NULL) {
274274
/* If profiling is enabled, we measure the runtime of partition */
275275
#if T8_ENABLE_PROFILE_BARRIER
276-
sc_MPI_Barrier(forest->mpicomm);
276+
sc_MPI_Barrier (forest->mpicomm);
277277
#endif
278278
forest->profile->first_descendant_runtime = -sc_MPI_Wtime ();
279279
}
@@ -358,7 +358,7 @@ t8_forest_partition_create_first_desc (t8_forest_t forest)
358358
if (forest->profile != NULL) {
359359
/* If profiling is enabled, we measure the runtime of partition */
360360
#if T8_ENABLE_PROFILE_BARRIER
361-
sc_MPI_Barrier(forest->mpicomm);
361+
sc_MPI_Barrier (forest->mpicomm);
362362
#endif
363363
forest->profile->first_descendant_runtime += sc_MPI_Wtime ();
364364
}
@@ -371,7 +371,7 @@ t8_forest_partition_create_tree_offsets (t8_forest_t forest)
371371
if (forest->profile != NULL) {
372372
/* If profiling is enabled, we measure the runtime of partition */
373373
#if T8_ENABLE_PROFILE_BARRIER
374-
sc_MPI_Barrier(forest->mpicomm);
374+
sc_MPI_Barrier (forest->mpicomm);
375375
#endif
376376
forest->profile->cmesh_offsets_runtime = -sc_MPI_Wtime ();
377377
}
@@ -442,7 +442,7 @@ t8_forest_partition_create_tree_offsets (t8_forest_t forest)
442442
if (forest->profile != NULL) {
443443
/* If profiling is enabled, we measure the runtime of partition */
444444
#if T8_ENABLE_PROFILE_BARRIER
445-
sc_MPI_Barrier(forest->mpicomm);
445+
sc_MPI_Barrier (forest->mpicomm);
446446
#endif
447447
forest->profile->cmesh_offsets_runtime += sc_MPI_Wtime ();
448448
}
@@ -1228,7 +1228,7 @@ t8_forest_partition (t8_forest_t forest)
12281228
if (forest->profile != NULL) {
12291229
/* If profiling is enabled, we measure the runtime of partition */
12301230
#if T8_ENABLE_PROFILE_BARRIER
1231-
sc_MPI_Barrier(forest->mpicomm);
1231+
sc_MPI_Barrier (forest->mpicomm);
12321232
#endif
12331233
forest->profile->partition_runtime = sc_MPI_Wtime ();
12341234

@@ -1261,7 +1261,7 @@ t8_forest_partition (t8_forest_t forest)
12611261
if (forest->profile != NULL) {
12621262
/* If profiling is enabled, we measure the runtime of partition */
12631263
#if T8_ENABLE_PROFILE_BARRIER
1264-
sc_MPI_Barrier(forest->mpicomm);
1264+
sc_MPI_Barrier (forest->mpicomm);
12651265
#endif
12661266
forest->profile->partition_runtime = sc_MPI_Wtime () - forest->profile->partition_runtime;
12671267

0 commit comments

Comments
 (0)