分布式计算之母 – MPI

分布式计算之母 – MPIMPI HelloWorld mpi hello world c 编译 mpi hello world c 在两节点上分布式并行运行 mpi hello world

大家好,欢迎来到IT知识分享网。

安装 OpenMPI

# 下载 OpenMPI 最新稳定版本 curl -O https://download.open-mpi.org/release/open-mpi/v5.0/openmpi-5.0.6.tar.gz # 解压 tar -zxvf openmpi-5.0.6.tar.gz # 编译安装 cd openmpi-5.0.6 mkdir $HOME/openmpi ./configure --prefix=$HOME/openmpi make -j 24 all # 这里指定了用24个线程并行编译 make install echo -e '\nexport LD_LIBRARY_PATH=$HOME/openmpi/lib:$LD_LIBRARY_PATH\n' >> ~/.bashrc echo -e '\nexport PATH=$HOME/openmpi/bin:$PATH\n' >> ~/.bashrc source $HOME/.bashrc # 删除原安装包/目录 rm -rf openmpi-5.0.6/

检查安装是否正确

which mpicc which mpirun mpirun --version
分布式计算之母 - MPI

MPI HelloWorld

mpi_hello_world.c:

#include <mpi.h> #include <stdio.h> int main(int argc, char argv) { // Initialize the MPI environment. The two arguments to MPI Init are not // currently used by MPI implementations, but are there in case future // implementations might need the arguments. MPI_Init(NULL, NULL); // Get the number of processes int world_size; MPI_Comm_size(MPI_COMM_WORLD, &world_size); // Get the rank of the process int world_rank; MPI_Comm_rank(MPI_COMM_WORLD, &world_rank); // Get the name of the processor char processor_name[MPI_MAX_PROCESSOR_NAME]; int name_len; MPI_Get_processor_name(processor_name, &name_len); // Print off a hello world message printf("Hello world from processor %s, rank %d out of %d processors\n", processor_name, world_rank, world_size); // Finalize the MPI environment. No more MPI calls can be made after this MPI_Finalize();

编译 mpi_hello_world.c:

mpicc -o mpi_hello_world mpi_hello_world.c

在两节点上分布式并行运行 mpi_hello_world:

mpirun -np 35 --host slurm-worker1:30,slurm-worker2:30 --use-hwthread-cpus mpi_hello_world
分布式计算之母 - MPI

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/171283.html

(0)
上一篇 2025-02-23 11:20
下一篇 2025-02-23 11:45

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信