[OMPI users] Using dual infiniband HCA cards

2009-07-30 Thread Sefa Arslan
. Sefa Arslan

Re: [OMPI users] "Hostfile" on Multicore Node?

2007-10-31 Thread Sefa Arslan
I think if you boot the mpi on the host machine, and than run your program with 8 thread (mpirun -np 8 ) , the operating system will automatically distribute it to the cores. Jeff Pummill wrote: I am doing some testing on a variety of 8-core nodes in which I just want to execute a couple of e

[OMPI users] mpi broadcast

2007-08-21 Thread Sefa Arslan
ank 2: killed by signal 9" Thanks a lot. Sefa Arslan

Re: [OMPI users] profiling MPI - getting number of send and receive request made by the MPI libray

2007-05-14 Thread Sefa Arslan
Also there is profiler called "vampire", I think bought by Intel.. It create a very extended profile for mpi applications and mpi communication. It is very useful, I think it is a library, you should compile your program with vampire option to be able to use it. Also it has a graphical inter

Re: [OMPI users] profiling MPI - getting number of send and receive request made by the MPI libray

2007-05-13 Thread Sefa Arslan
you may want to look at the following site: http://www-unix.mcs.anl.gov/dbpp/tools.html Sefa Code Master wrote: How can I profile the communication of MPI library such as number of messages sent / received, UDP packet requested to receive and sent and volume of data sent?

[OMPI users] mpi_rank : use as function arguments, or find it again every time

2007-05-12 Thread Sefa Arslan
Hi, I need to use rank of the mpi processes in my sub functions ( c language). which one has more cost?; creating a new variable& and finding the rank in each sub function by: int mpi_rank; MPI_Comm_rank(MPI_COMM_WORLD,&mpi_rank); or finding the rank in main function once,