鲲鹏社区首页
中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助

二进制安装Hyper MPI

  1. 下载二进制包后,将压缩包解压到“/where/to/install”目录下。

    tar -zxvf package.tar.gz /where/to/install

    • package.tar.gz:代表Hyper MPI软件包名称,具体以最终下载的软件包名称为准进行替换。
    • /where/to/install:代表Hyper MPI的安装路径,用户可自定义,现场以实际情况进行替换,该文档后续都以安装路径“/where/to/install”为例进行说明及相关操作。
  2. 当涉及到多节点使用MPI时,应将以下环境变量写到用户的~/.bashrc文件中。

    hwmpi=/where/to/install

    export OPAL_PREFIX=${hwmpi}/ompi/

    export PATH=${hwmpi}/ompi/bin:${hwmpi}/ucx/bin:$PATH

    export LD_LIBRARY_PATH=${hwmpi}/ompi/lib:${hwmpi}/ucx/lib:$LD_LIBRARY_PATH

    export INCLUDE=${hwmpi}/ompi/include:$INCLUDE

  3. 执行以下命令,使脚本生效。

    source ~/.bashrc