سؤال

What exactly is the third parameter in the following MPI command

mpiexec -n 2 cpi

Is it no. of cores? So if I am running on Pentium 4 , shall I make it 1?

هل كانت مفيدة؟

المحلول

  • -n 2: spawn two processes.
  • cpi: the executable.

Experiment with what is faster, one or two or more processes. Some codes run best with one process per core, some codes benefit from oversubscription.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top