openmpi hello world!

使用openmpi编程实现一个hello world程序 ,里面有很多常用的opempi程序例子, 对学习openmpi编程有帮助

应用介绍

使用openmpi编程实现一个hello world程序 ,里面有很多常用的opempi程序例子, 对学习openmpi编程有帮助



#include <stdio.h>
#include "mpi.h"

int main(int argc, char* argv[])
{
    int rank, size, len;
    char version[MPI_MAX_LIBRARY_VERSION_STRING];

    MPI_Init(&argc, &argv);
    MPI_Comm_rank(MPI_COMM_WORLD, &rank);
    MPI_Comm_size(MPI_COMM_WORLD, &size);
    MPI_Get_library_version(version, &len);
    printf("Hello, world, I am %d of %d, (%s, %d)\n",
           rank, size, version, len);
    MPI_Finalize();

    return 0;
}

文件列表(部分)

名称 大小 修改日期
connectivity_c.c0.77 KB2020-03-04
Hello.java0.66 KB2020-03-04
hello_c.c0.43 KB2020-03-04
hello_cxx.cc0.61 KB2020-03-04
hello_mpifh.f0.44 KB2020-03-04
hello_oshmemfh.f900.41 KB2020-03-04
hello_oshmem_c.c0.47 KB2020-03-04
hello_oshmem_cxx.cc0.53 KB2020-03-04
hello_usempi.f900.47 KB2020-03-04
hello_usempif08.f900.50 KB2020-03-04
Makefile1.48 KB2020-03-04
Makefile.include0.82 KB2020-03-04
oshmem_circular_shift.c0.37 KB2020-03-04
oshmem_max_reduction.c0.51 KB2020-03-04
oshmem_shmalloc.c0.33 KB2020-03-04
oshmem_strided_puts.c0.66 KB2020-03-04
oshmem_symmetric_data.c0.54 KB2020-03-04
README1.11 KB2020-03-04
Ring.java0.90 KB2020-03-04
ring_c.c0.96 KB2020-03-04
ring_cxx.cc1.13 KB2020-03-04
ring_mpifh.f1.00 KB2020-03-04
ring_oshmemfh.f900.78 KB2020-03-04
ring_oshmem_c.c0.82 KB2020-03-04
ring_usempi.f900.98 KB2020-03-04
ring_usempif08.f901.02 KB2020-03-04
spc_example.c1.45 KB2020-03-04
examples0.00 KB2020-10-03

立即下载

相关下载

[openmpi hello world!] 使用openmpi编程实现一个hello world程序 ,里面有很多常用的opempi程序例子, 对学习openmpi编程有帮助
[openmpi源码] openmpi项目是一个开源消息传递接口实现,由学术,研究和行业合作伙伴联盟开发和维护。 因此,openMPI可以整合高性能计算社区中所有专家,技术和资源,以构建可用的最佳MPI库。openMPI为系统和软件供应商,应用程序开发人员和计算机科学研究人员提供了优势

评论列表 共有 0 条评论

暂无评论

微信捐赠

微信扫一扫体验

立即
上传
发表
评论
返回
顶部