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

Removed comment

parent 55c09cb9
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@
int createGridCommunicators(MPI_Comm *cartComm, MPI_Comm *rowComm, MPI_Comm *colComm, int nProc) {
int gridN = (int) sqrt(nProc);
int dimensions[2] = {gridN, gridN};
int periods[2] = {true, true}; // Cyclic on column for B matrix
int periods[2] = {true, true}; // Cyclic on row-column
MPI_Cart_create(MPI_COMM_WORLD, 2, dimensions, periods, 1, cartComm);
......
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