MPI 终端帮助手册..!

MPI 终端帮助手册..!

有没有可能的方法可以在终端中获取 MPI 命令的开发人员手册帮助。我试过了mpi --helpmpich --help因为 mpi 版本命令看起来像mpich --version),但没有用。那么,获取 mpi 手册帮助的终端命令是什么?我期望得到类似的东西,要知道“MPI_Send”,它应该给出类似这样的内容:-

MPI_Send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag,MPI_Comm comm)

答案1

要了解 OpenMPI 库提供的各个函数的文档,您需要openmpi-doc从软件中心或通过终端安装该包,使用

sudo apt-get install openmpi-doc

对于 MPICH,我相信相应的包是mpich2-docmpich-doc

然后函数的手册页应该可以照常使用,例如man MPI_Send

MPI_Send(3)                        Open MPI                        MPI_Send(3)

NAME
       MPI_Send - Performs a standard-mode blocking send.

SYNTAX
C Syntax
       #include <mpi.h>
       int MPI_Send(void *buf, int count, MPI_Datatype datatype, int dest,
            int tag, MPI_Comm comm)

<snip>

相关内容