作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 boost::mpi
1.53 就地全部减少? (这是 CentOS 7 的版本)
boost 1.61 有 boost::mpi::inplace_t
( doc ) 但 boost 1.53 没有 ( doc )。
对于 1.61,我可以使用:
boost::mpi::all_reduce(
comm,
boost::mpi::inplace_t<int*>(ptr_int_array),
n_elements,
op);
最佳答案
如果您不想有一个额外的out_value
字段,您可以通过设置为函数的返回值来覆盖in_value
。
#include <boost/mpi.hpp>
int main()
{
boost::mpi::environment env;
boost::mpi::communicator comm;
// set in_value to whatever you want.
int in_value = comm.rank()
// overwrite.
in_value = all_reduce(comm, in_value, std::plus<double>());
return 0;
}
关于c++ - boost::mpi 1.53 到位 all_reduce,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43407722/
我正在尝试使用 all_reduce 函数从每个处理器收集一个 bool 值,如果任何 bool 值为真(即“或”运算符),则将它们归约为真。但是我在为此找到正确的语法时遇到了问题。我现在拥有的是 a
如何使用 boost::mpi 1.53 就地全部减少? (这是 CentOS 7 的版本) boost 1.61 有 boost::mpi::inplace_t ( doc ) 但 boost 1.
我是一名优秀的程序员,十分优秀!