Ioannis,

### What version of Open MPI are you using? (e.g., v1.10.3, v2.1.0, git 
branch name and hash, etc.)



### Describe how Open MPI was installed (e.g., from a source/
distribution tarball, from a git clone, from an operating system 
distribution package, etc.)



### Please describe the system on which you are running

* Operating system/version: 
* Computer hardware: 
* Network type: 

also, what if you

mpirun --mca shmem_base_verbose 100 ...


Cheers,

Gilles
----- Original Message -----
> Hi
> 
> I am trying to run the following simple demo to a cluster of two nodes
> 
> ----------------------------------------------------------------------
------------------------------------
> #include <mpi.h>
> #include <stdio.h>
> 
> int main(int argc, char** argv) {
>      MPI_Init(NULL, NULL);
> 
>      int world_size;
>      MPI_Comm_size(MPI_COMM_WORLD, &world_size);
> 
>      int world_rank;
>      MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
> 
>      char processor_name[MPI_MAX_PROCESSOR_NAME];
>      int name_len;
>      MPI_Get_processor_name(processor_name, &name_len);
> 
>      printf("Hello world from processor %s, rank %d"   " out of %d 
> processors\n",  processor_name, world_rank, world_size);
> 
>      MPI_Finalize();
> }
> ----------------------------------------------------------------------
---------------------------
> 
> i get always the message
> 
> ----------------------------------------------------------------------
--------------------------
> It looks like opal_init failed for some reason; your parallel process 
is
> likely to abort.  There are many reasons that a parallel process can
> fail during opal_init; some of which are due to configuration or
> environment problems.  This failure appears to be an internal failure;
> here's some additional information (which may only be relevant to an
> Open MPI developer):
> 
>    opal_shmem_base_select failed
>    --> Returned value -1 instead of OPAL_SUCCESS
> ----------------------------------------------------------------------
----------------------------
> 
> any hint?
> 
> Ioannis Botsis
> 
> 
> 
> _______________________________________________
> users mailing list
> users@lists.open-mpi.org
> https://rfd.newmexicoconsortium.org/mailman/listinfo/users
> 


_______________________________________________
users mailing list
users@lists.open-mpi.org
https://rfd.newmexicoconsortium.org/mailman/listinfo/users

Reply via email to