Searched refs:all_reduce_test (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/libs/mpi/test/python/ |
D | all_reduce_test.py | 13 def all_reduce_test(comm, generator, kind, op, op_kind): function 27 all_reduce_test(mpi.world, int_generator, "integers", lambda x,y:x + y, "sum") 28 all_reduce_test(mpi.world, int_generator, "integers", lambda x,y:x * y, "product") 29 all_reduce_test(mpi.world, string_generator, "strings", lambda x,y:x + y, "concatenation") 30 all_reduce_test(mpi.world, string_list_generator, "list of strings", lambda x,y:x + y, "concatenati…
|
/third_party/boost/libs/mpi/test/ |
D | all_reduce_test.cpp | 169 all_reduce_test(const communicator& comm, Generator generator, in all_reduce_test() function 288 all_reduce_test(comm, int_generator(), "integers", std::plus<int>(), "sum", 0); in BOOST_AUTO_TEST_CASE() 289 all_reduce_test(comm, int_generator(), "integers", std::multiplies<int>(), "product", 1); in BOOST_AUTO_TEST_CASE() 290 all_reduce_test(comm, int_generator(), "integers", maximum<int>(), "maximum", 0); in BOOST_AUTO_TEST_CASE() 291 all_reduce_test(comm, int_generator(), "integers", minimum<int>(), "minimum", 2); in BOOST_AUTO_TEST_CASE() 295 all_reduce_test(comm, point_generator(point(0,0,0)), "points", std::plus<point>(), in BOOST_AUTO_TEST_CASE() 299 all_reduce_test(comm, int_generator(17), "integers", secret_int_bit_and(), in BOOST_AUTO_TEST_CASE() 303 all_reduce_test(comm, wrapped_int_generator(17), "wrapped integers", in BOOST_AUTO_TEST_CASE() 307 all_reduce_test(comm, string_generator(), "strings", in BOOST_AUTO_TEST_CASE()
|
D | Jamfile.v2 | 28 [ mpi-test all_reduce_test : : : 1 2 11 ]
|