Skip to content

Commit

Permalink
tests: Update MPI notebook output
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebisbas committed Jul 24, 2022
1 parent e2aaf99 commit 2dab961
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/mpi/overview.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@
" int * hsize;\n",
" int * hofs;\n",
" int * oofs;\n",
" void * dmap;\n",
" void *restrict dmap;\n",
"} ;\n",
"\n",
"struct profiler\n",
Expand Down Expand Up @@ -934,7 +934,7 @@
" int * hsize;\n",
" int * hofs;\n",
" int * oofs;\n",
" void * dmap;\n",
" void *restrict dmap;\n",
"} ;\n",
"\n",
"struct neighborhood\n",
Expand Down Expand Up @@ -1025,9 +1025,9 @@
"\n",
"static void sendrecv0(struct dataobj *restrict u_vec, const int x_size, const int y_size, int ogtime, int ogx, int ogy, int ostime, int osx, int osy, int fromrank, int torank, MPI_Comm comm)\n",
"{\n",
" float *bufg_vec;\n",
" float * bufg_vec;\n",
" posix_memalign((void**)(&bufg_vec),64,x_size*y_size*sizeof(float));\n",
" float *bufs_vec;\n",
" float * bufs_vec;\n",
" posix_memalign((void**)(&bufs_vec),64,x_size*y_size*sizeof(float));\n",
"\n",
" MPI_Request rrecv;\n",
Expand Down

0 comments on commit 2dab961

Please sign in to comment.