⑴MPI是多点借口,在Ubuntu下使用时需要搭建mpi环境,下面小编将针对MPI在Ubuntu中的搭建和使用做个简单介绍,感兴趣的朋友可以来做个了解。
⑵终端:sudo apt-get install mpich
⑶安装的是mpich的..版本。
⑷终端:mpi mpi_hello.c -g -Wall -o mpi_hello
⑸终端:mpiexec -n 《number of processes》 。/mpi_hello
⑹例:用个进程运行程序
⑺mpiexec -n 。/mpi_hello
⑻上面就是Ubuntu配置和使用MPI的方法介绍了,一共分为三个步骤,即配置环境、编译及MPI的运行,Linux其他系统的使用可做个参考。