Advertisement

MPI 概述与实践——理论部分

阅读量:

MPI介绍与实践——理论介绍

一、MPI介绍

1、什么是MPI

Message Passing Interface Specification

2、MPI定义了消息传递的标准API
  • What's included in the standard:The syntactic and semantic rules governing a core function set
  • What's excluded from the standard but does not include:Implementation-specific details, operational aspects such as process counts involved
3、为什么使用MPI

标准化:明确的标准。
可移植性:主要所有平台都可以使用 MPI 实现这一技术。
可伸缩性:在本质上它并不受限于能够访问相同内存空间的处理节点数这一限制因素。
流行广泛性:众多库都是基于 MPI 的架构构建而成的

4、标准包含什么

一对一通信;群组操作;作业群组、通讯上下层以及作业结构;系统管理和评估;作业生成与配置;辅助功能模块

二、MPI点对点通信

Point-to-point comm

全部评论 (0)

还没有任何评论哟~