Skip to content

Commit b51a71a

Browse files
committed
remove more tmp files
1 parent 2bd460a commit b51a71a

File tree

5 files changed

+0
-238
lines changed

5 files changed

+0
-238
lines changed

examples/read_write_col_perf.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ main(int argc, char **argv)
117117

118118
char hostname[256];
119119
gethostname(hostname, 256);
120-
strcpy(hostname, "eno1");
121120
if (rank == 0) {
122121
LOG_INFO("number of dimensions in this test is %d\n", ndim);
123122
LOG_INFO("data size = %llu\n", (long long unsigned)data_size);

examples/read_write_perf.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ main(int argc, char **argv)
111111
#endif
112112
char hostname[256];
113113
gethostname(hostname, 256);
114-
strcpy(hostname, "eno1");
115114
if (rank == 0) {
116115
LOG_INFO("number of dimensions in this test is %d\n", ndim);
117116
LOG_INFO("data size = %llu\n", (long long unsigned)data_size);

network.patch

Lines changed: 0 additions & 100 deletions
This file was deleted.

pdc-installation.drawio

Lines changed: 0 additions & 133 deletions
This file was deleted.

src/commons/utils/pdc_timing.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ PDC_timing_init()
5252

5353
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
5454
gethostname(hostname, HOST_NAME_MAX);
55-
strcpy(hostname, "eno1");
5655
if (!(rank % 31)) {
5756
LOG_INFO("client process rank %d, hostname = %s\n", rank, hostname);
5857
}
@@ -143,7 +142,6 @@ PDC_timing_report(const char *prefix)
143142
time(&now);
144143
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
145144
gethostname(hostname, HOST_NAME_MAX);
146-
strcpy(hostname, "eno1");
147145
if (!(rank % 32)) {
148146
LOG_INFO("client process rank %d, hostname = %s\n", rank, hostname);
149147
}
@@ -281,7 +279,6 @@ PDC_server_timing_init()
281279

282280
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
283281
gethostname(hostname, HOST_NAME_MAX);
284-
strcpy(hostname, "eno1");
285282

286283
LOG_INFO("server process rank %d, hostname = %s\n", rank, hostname);
287284
MPI_Barrier(MPI_COMM_WORLD);

0 commit comments

Comments
 (0)