@@ -222,12 +222,12 @@ int main(int argc, char *argv[]) {
222
222
std::vector<double > block_transfer_times (Num_procs);
223
223
std::vector<double > local_copy_times (Num_procs);
224
224
225
- MPI_Gather (&cpu_times.total , 1 , MPI_DOUBLE, total_times.data (), 1 , MPI_DOUBLE, 0 ,
226
- MPI_COMM_WORLD);
227
- MPI_Gather (&total_local_transpose_time, 1 , MPI_DOUBLE, local_transpose_times. data (),
228
- 1 , MPI_DOUBLE, 0 , MPI_COMM_WORLD);
229
- MPI_Gather (&total_block_transfer_time, 1 , MPI_DOUBLE, block_transfer_times. data (), 1 ,
230
- MPI_DOUBLE, 0 , MPI_COMM_WORLD);
225
+ MPI_Gather (&cpu_times.total , 1 , MPI_DOUBLE, total_times.data (), 1 , MPI_DOUBLE,
226
+ 0 , MPI_COMM_WORLD);
227
+ MPI_Gather (&total_local_transpose_time, 1 , MPI_DOUBLE,
228
+ local_transpose_times. data (), 1 , MPI_DOUBLE, 0 , MPI_COMM_WORLD);
229
+ MPI_Gather (&total_block_transfer_time, 1 , MPI_DOUBLE,
230
+ block_transfer_times. data (), 1 , MPI_DOUBLE, 0 , MPI_COMM_WORLD);
231
231
MPI_Gather (&total_local_copy_time, 1 , MPI_DOUBLE, local_copy_times.data (), 1 ,
232
232
MPI_DOUBLE, 0 , MPI_COMM_WORLD);
233
233
0 commit comments