Running an MPI job across multiple MPI nodes is basically the same as executing it only locally, as in the example earlier in this chapter:
$ mpirun --hostfile my_hostfile hello_mpi_world
This command would tell the MPI launcher to use a host file called my_hostfile and run a copy of the specified MPI application on each processor of each node found in that host file.