Skip to content
Snippets Groups Projects
Verified Commit 4c4a8e2d authored by baptiste.coudray's avatar baptiste.coudray
Browse files

Fixed output format

parent 158ec2c6
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ int main(int argc, char *argv[]) { ...@@ -110,7 +110,7 @@ int main(int argc, char *argv[]) {
compute_next_chunk_board(disp_context, fut_context, &ci); compute_next_chunk_board(disp_context, fut_context, &ci);
double finish = MPI_Wtime(); double finish = MPI_Wtime();
if(my_rank == ROOT_RANK) { if(my_rank == ROOT_RANK) {
printf("%d;%d;%d;%d%f\n", world_size, nb_devices, board_n, board_m, finish - start); printf("%d;%d;%d;%d;%f\n", world_size, nb_devices, board_n, board_m, finish - start);
} }
dispatch_context_free(disp_context); dispatch_context_free(disp_context);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment