.
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
ank 2: killed by signal 9"
Thanks a lot.
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
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?
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,