Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将一个值传递给我用 C 编写的 MPI 程序。因此,如果我传递一个值 5,我想将数字 5 分配给线程 1,将数字 4 分配给线程 2 等等。我该怎么做?
最后,我有一个 MPI reduce,它是所有这些值的乘积(5 * 4 * 3 ...),所以我真的不需要在线程中做任何事情,但我只需要向每个值传递不同的值线。
这听起来像是一个作业,所以我只会写出伪代码。
即使我认为您实际上是指进程,而不是线程(正如 suszterpatt 已经在评论中指出的那样)。