]> AND Private Git Repository - GMRES2stage.git/blobdiff - code/ex15.c
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
modif exemple
[GMRES2stage.git] / code / ex15.c
index 7dc050b2182c492dfb6e054cda07c547033293ca..f62763fbeffe444e57b4582be25f80866de4555e 100644 (file)
@@ -480,6 +480,10 @@ int main(int argc,char **args)
   ierr = PetscOptionsGetInt(NULL,"-m",&m,NULL);CHKERRQ(ierr);
   ierr = PetscOptionsGetInt(NULL,"-n",&n,NULL);CHKERRQ(ierr);
 
+  PetscMPIInt size;
+  MPI_Comm_size(PETSC_COMM_WORLD,&size);
+  PetscPrintf(PETSC_COMM_WORLD,"Number of processors = %d\n",size);
+
   /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          Compute the matrix and right-hand-side vector that define
          the linear system, Ax = b.