Skip to content

Commit 110096a

Browse files
removing extra space and fixing tab space size
1 parent c001fd2 commit 110096a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+117
-118
lines changed

partitioned-communication/test_cancel0.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ int main(int argc, char *argv[]) {
9191
MPI_Barrier(MPI_COMM_WORLD);
9292
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
9393

94-
MPI_Finalize ();
94+
MPI_Finalize();
9595

9696
return 0;
9797
}

partitioned-communication/test_datatype0.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int main(int argc, char *argv[]) {
8989

9090
if (myrank == 0) {TEST_RAN_TO_COMPLETION();}
9191

92-
MPI_Finalize ();
92+
MPI_Finalize();
9393
return 0;
9494

9595
}

partitioned-communication/test_datatype1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int main(int argc, char *argv[]) {
8989
MPI_Barrier(MPI_COMM_WORLD);
9090
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
9191

92-
MPI_Finalize ();
92+
MPI_Finalize();
9393
return 0;
9494

9595
}

partitioned-communication/test_datatype2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ int main(int argc, char *argv[]) {
9090
MPI_Barrier(MPI_COMM_WORLD);
9191
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
9292

93-
MPI_Finalize ();
93+
MPI_Finalize();
9494
return 0;
9595

9696
}

partitioned-communication/test_datatype3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ int main(int argc, char *argv[]) {
102102
MPI_Barrier(MPI_COMM_WORLD);
103103
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
104104

105-
MPI_Finalize ();
105+
MPI_Finalize();
106106
return 0;
107107

108108
}

partitioned-communication/test_datatype4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ int main(int argc, char *argv[]) {
7171
MPI_Barrier(MPI_COMM_WORLD);
7272
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
7373

74-
MPI_Finalize ();
74+
MPI_Finalize();
7575
return 0;
7676

7777
}

partitioned-communication/test_datatype5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ int main(int argc, char *argv[]) {
7272
MPI_Barrier(MPI_COMM_WORLD);
7373
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
7474

75-
MPI_Finalize ();
75+
MPI_Finalize();
7676
return 0;
7777

7878
}

partitioned-communication/test_example1a.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ int main(int argc, char *argv[]) {
7171
MPI_Barrier(MPI_COMM_WORLD);
7272
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
7373

74-
MPI_Finalize ();
74+
MPI_Finalize();
7575

7676
return 0;
7777
}

partitioned-communication/test_example1b.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {
6868
MPI_Barrier(MPI_COMM_WORLD);
6969
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
7070

71-
MPI_Finalize ();
71+
MPI_Finalize();
7272

7373
return 0;
7474
}

partitioned-communication/test_example2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ int main(int argc, char *argv[]) {
9595

9696
if (0 == myrank) {TEST_RAN_TO_COMPLETION();}
9797

98-
MPI_Finalize ();
98+
MPI_Finalize();
9999
return 0;
100100
}

0 commit comments

Comments
 (0)