05Class
基于通信的并行化
MPI2.0
单边通信
动态进程管理
I/O文件输入与输出
接口实现
MPICH
Open MPI
LAM
使用openmpi
安装参考地址 https://github.com/pmodels/mpich
#源代码安装
wget -c http://www.mpich.org/static/downloads/3.3.1/mpich-3.3.1.tar.gz
tar -xvzf mpich-3.3.1.tar.gz
cd mpich-3.3.1.tar.gz
mkdir build
./configure --prefix=/public/home/zpliu/scripte/C/mpich-3.3.1/build 2>&1| tee c.txt
make 2>&1 | tee m.txt
make install 2>&1 | tee mi.txt
# 之后程序在build/bin/目录里
# 加入环境变量
export PATH="/public/home/zpliu/scripte/C/mpich-3.3.1/build/bin:$PATH"
## 集群直接load
module load mpi/openmpi/3.1.1rc1MPI运行实例
who am I
编译
mpigcc -o hello test5.c运行
mpirun -np 4 ~/ClassTest/05/hello获取进程编号和进程数目
MPI_Comm_rank(MPI_COMM_WORLD,&myid)获取进程编号MPI_Comm_size(MPI_COMM_WORLD,&numprocs)获取总的进程数目
Last updated
Was this helpful?