[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Download mpichc 1.2.4



Hi..
I am using LINUX..
As in the condor manual says this:

""" The MPI universe in Condor currently supports MPICH version s 1.2.2,
1.2.3, and 1.2.4 using the ch p4 device."""


I looking for this reason these versions(Sorry for my English)

I run the following code mpi:

#include <stdio.h>
#include <mpi.h>
int main (int argc, char **argv)
{
  int rank;
    int size;
        MPI_Init (&argc, &argv);
        MPI_Comm_rank (MPI_COMM_WORLD, &rank);
        MPI_Comm_size (MPI_COMM_WORLD, &size);
        printf ("Soy el nodo %d de un cluster de %d\n", rank, size);
        MPI_Finalize ();
        return 0;
}


My file "hola.sub" is:

universe = MPI
executable = hola_mundo
log = logfile
output = outfile
error = errfile
should_transfer_files = yes
when_to_transfer_output = on_exit
machine_count = 4
queue

Execute hola_mundo.c ---->  mpirun.mpich holamundo.c -o holamundo

and then

condor_submit hola.sub
in the logfile:
000 (053.000.000) 06/02 14:23:10 Job submitted from host: <192.170.0.1:1034>
...


What am I doing wrong?
please help





>Condor has been compatible with MPICH2 for like 3 or 4 years now.
>
> So long as you are not running Condor on Windows, in which case
> you need to run 1.2.x.
>
> Regards,
> -B
>
>
> _______________________________________________
> Condor-users mailing list
> To unsubscribe, send a message to condor-users-request@xxxxxxxxxxx with a
> subject: Unsubscribe
> You can also unsubscribe by visiting
> https://lists.cs.wisc.edu/mailman/listinfo/condor-users
>
> The archives can be found at:
> https://lists.cs.wisc.edu/archive/condor-users/
>