- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
有什么区别,应该实际使用哪一个?我找到了这个 IBM链接和这个问题 MPI - one function for MPI_Init and MPI_Init_thread .如果重要的话,我只对 C 语言感兴趣。
两个函数的描述是一样的:
MPI_Init_thread Initialize the MPI execution environment
如您在他们的引用文献中所见:MPI_Init()和 MPI_Init_thread() , 但是论据不同。
最佳答案
只要您的程序使用线程,就应该使用 MPI_Init_thread()
。
这取决于您对线程的使用情况,您将传递哪个 required
值。来自 OpenMPI 手册的引用:
MPI_THREAD_SINGLE Only one thread will execute.
MPI_THREAD_FUNNELED If the process is multithreaded, only the thread that called MPI_Init_thread will make MPI calls.
MPI_THREAD_SERIALIZED If the process is multithreaded, only one thread will make MPI library calls at one time.
MPI_THREAD_MULTIPLE If the process is multithreaded, multiple threads may call MPI at once with no restrictions.
通常,唯一被区别对待的 required
值是 MPI_THREAD_MULTIPLE
。如果更多线程可以同时调用 MPI 函数,则传递此值。不幸的是,在这种情况下,MPI 库的性能通常很差。
其他的在 MPI 库中通常被平等对待。然而,如果在构建 OpenMPI 时禁用了线程支持,它仍然会提示,唯一的 provided
值是 MPI_THREAD_SINGLE
,即使 MPI_FUNNELED
和 MPI_SERIALIZED
也可以工作。
关于c - MPI_Init() VS MPI_Init_thread(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34851903/
ref MPI_Init 的声明: This routine must be called by one thread only. That thread is called the main thr
我有一个最小的问题示例,我只是启动 4 个进程(在具有 8 个线程的四核 Intel Core i7 cpu 上),并且出于某种原因 MPI_Init 似乎需要非常,很长一段时间。 这是我的代码:
我遇到了关于使用MPI_Init() 的问题。 我只想使用下面上下文中的代码在根处理器上初始化随机数“randv”。为了查看我的目标是否实现,我让程序打印出数组“randv”,方法是在“call RA
假设我有一些如下所示的代码: #include "mpi.h" int main( int argc, char** argv ) { int my_array[10]; //fill
MPICH 和 OpenMPI 的文档都提到,在 MPI_Init 之前或 MPI_Finilize 之后应该完成最少的工作: The MPI standard does not say what a
我遇到了关于使用MPI_Init() 的问题。 我只想使用下面上下文中的代码在根处理器上初始化随机数“randv”。为了查看我的目标是否实现,我让程序打印出数组“randv”,方法是在“call RA
从 std::thread 调用 MPI_Init 是否安全? int main(int argc, char** argv) { std::thread mpi_thread([...]()
有什么区别,应该实际使用哪一个?我找到了这个 IBM链接和这个问题 MPI - one function for MPI_Init and MPI_Init_thread .如果重要的话,我只对 C
是否可以用一个函数来包装MPI_Init和MPI_Init_thread?这样做的目的是拥有更清晰的 API,同时保持向后兼容性。当 MPI 运行时不支持对 MPI_Init_thread 的调用时,
在全新的 Raspberry Pi 4 Ubuntu 上运行干净的 Ubuntu, ubuntu@ubuntu:~/mpi-hello-world/mpitutorial/tutorials/mpi-
我需要在我的项目中使用 MUMPS。我想用求解方程的简单示例(如下)来测试安装。问题是,这段代码在我的个人电脑上可以正常工作,但每次我尝试在我的工作计算机上运行它时都会出现此错误: *** The M
我一直在用下面的代码测试 mpi 究竟是如何工作的 #include #include using namespace std; int main(int argc
这就是我们如何使用 MPI_Init 函数 int main(int argc, char **argv) { MPI_Init(&argc, &argv); … } 为什么 MPI_Init
这就是我们如何使用 MPI_Init 函数 int main(int argc, char **argv) { MPI_Init(&argc, &argv); … } 为什么 MPI_Init
我正在尝试通过 python 使用 OpenMPI 访问共享库,但由于某种原因,我收到以下错误消息: [Geo00433:01196] mca: base: component_find: unabl
我正在尝试在 Windows 中首次使用 Visual Studio 2010 和 Intel Composer XE 2011 SP1 的试用版、ifort visual fortran 编译器编译
我是一名优秀的程序员,十分优秀!