1# Support for the Message Passing Interface (MPI) 2# 3# (C) Copyright 2005, 2006 Trustees of Indiana University 4# (C) Copyright 2005 Douglas Gregor 5# 6# Distributed under the Boost Software License, Version 1.0. (See accompanying 7# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) 8# 9# Authors: Douglas Gregor 10# Andrew Lumsdaine 11 12project : requirements <library>/boost//mpi ; 13import mpi : mpi-test ; 14 15if [ mpi.configured ] 16{ 17test-suite mpi 18 : 19 [ mpi-test version_test : : : 1 ] 20 [ mpi-test block_nonblock_test-b2nb : block_nonblock_test.cpp : : 2 ] 21 [ mpi-test block_nonblock_test-nb2b : block_nonblock_test.cpp : : 2 ] 22 [ mpi-test random_gather : ../example/random_gather.cpp : : 2 ] 23 [ mpi-test random_scatter : ../example/random_scatter.cpp : : 2 ] 24 [ mpi-test cartesian_communicator : ../example/cartesian_communicator.cpp : : 24 ] 25 [ mpi-test cartesian_topology_init_test : : : 1 ] 26 [ mpi-test broadcast_stl_test : : : 2 ] 27 [ mpi-test all_gather_test : : : 1 2 11 ] 28 [ mpi-test all_reduce_test : : : 1 2 11 ] 29 [ mpi-test all_to_all_test : : : 1 2 11 ] 30 [ mpi-test broadcast_test : : : 2 17 ] 31 [ mpi-test gather_test : : : 1 2 11 ] 32 [ mpi-test is_mpi_op_test : : : 1 ] 33 [ mpi-test mt_level_test : : : 1 ] 34 [ mpi-test mt_init_test : : : 1 4 ] 35 # Note: Microsoft MPI fails nonblocking_test on 1 processor 36 [ mpi-test nonblocking_test : : : 2 11 24 ] 37 [ mpi-test reduce_test ] 38 [ mpi-test ring_test : : : 2 3 4 7 8 13 17 ] 39 [ mpi-test sendrecv_test : : : 1 4 7 48 ] 40 [ mpi-test wait_any_test : : : 1 4 7 20 ] 41 [ mpi-test wait_all_vector_test : : : 2 ] 42 [ mpi-test wait_all_on_null : : : 1 2 ] 43 [ mpi-test scan_test ] 44 [ mpi-test scatter_test ] 45 # Note: Microsoft MPI fails all skeleton-content tests 46 [ mpi-test skeleton_content_test : : : 2 3 4 7 8 13 17 ] 47 [ mpi-test graph_topology_test : : : 2 7 13 ] 48 [ mpi-test cartesian_topology_test : : : 24 ] 49 [ mpi-test pointer_test : : : 2 ] 50 [ mpi-test groups_test ] 51 # tests that require -std=c++11 52 [ mpi-test sendrecv_vector : : : 2 ] 53 # Intel MPI 2018 and older are axtected to fail: 54 [ mpi-test non_blocking_any_source : : : 2 17 ] 55 ; 56} 57