mpirun: no hay suficientes espacios disponibles

Por lo general, cuando uso mpirun, puedo "sobrecargarlo", usando más procesadores de los que realmente hay en mi computadora. Por ejemplo, en mi Mac de cuatro núcleos, puedo ejecutarmpirun -np 29 python -c "print 'hey'" No hay problema. Ahora estoy en otra máquina, que arroja el siguiente error:

$ mpirun -np 25 python -c "print 'hey'"
--------------------------------------------------------------------------
There are not enough slots available in the system to satisfy the 25 slots 
that were requested by the application:
  python

Either request fewer slots for your application, or make more slots available
for use.
--------------------------------------------------------------------------

¿Por qué no funciona mpirun "overclocking" aquí? ¿Hay alguna manera de superar este mensaje de error y ejecutar con éxito con más procesadores de los que están disponibles?

Respuestas a la pregunta(2)

Su respuesta a la pregunta