Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix test: program needs exactly 2 processes.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 20 Mar 2023 10:31:24 +0000 (11:31 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Fri, 24 Mar 2023 13:31:58 +0000 (14:31 +0100)
examples/smpi/mc/sendsend.c

index 4735056..2491a4f 100644 (file)
@@ -23,7 +23,7 @@ int main(int argc, char** argv)
 
   MPI_Comm_size(MPI_COMM_WORLD, &size); /* Get nr of tasks */
   MPI_Comm_rank(MPI_COMM_WORLD, &rank); /* Get id of this process */
-  if (size < 2) {
+  if (size != 2) {
     printf("run this program with exactly 2 processes (-np 2)\n");
     MPI_Finalize();
     exit(0);