Jamfile.v2 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. project : requirements <library>/boost//mpi ;
  12. import mpi : mpi-test ;
  13. if [ mpi.configured ]
  14. {
  15. test-suite mpi
  16. :
  17. [ mpi-test version_test : : : 1 ]
  18. [ mpi-test block_nonblock_test-b2nb : block_nonblock_test.cpp : : 2 ]
  19. [ mpi-test block_nonblock_test-nb2b : block_nonblock_test.cpp : : 2 ]
  20. [ mpi-test random_gather : ../example/random_gather.cpp : : 2 ]
  21. [ mpi-test random_scatter : ../example/random_scatter.cpp : : 2 ]
  22. [ mpi-test cartesian_communicator : ../example/cartesian_communicator.cpp : : 24 ]
  23. [ mpi-test cartesian_topology_init_test : : : 1 ]
  24. [ mpi-test broadcast_stl_test : : : 2 ]
  25. [ mpi-test all_gather_test : : : 1 2 11 ]
  26. [ mpi-test all_reduce_test : : : 1 2 11 ]
  27. [ mpi-test all_to_all_test : : : 1 2 11 ]
  28. [ mpi-test broadcast_test : : : 2 17 ]
  29. [ mpi-test gather_test : : : 1 2 11 ]
  30. [ mpi-test is_mpi_op_test : : : 1 ]
  31. [ mpi-test mt_level_test : : : 1 ]
  32. [ mpi-test mt_init_test : : : 1 4 ]
  33. # Note: Microsoft MPI fails nonblocking_test on 1 processor
  34. [ mpi-test nonblocking_test : : : 2 11 24 ]
  35. [ mpi-test reduce_test ]
  36. [ mpi-test ring_test : : : 2 3 4 7 8 13 17 ]
  37. [ mpi-test sendrecv_test : : : 1 4 7 48 ]
  38. [ mpi-test wait_any_test : : : 1 4 7 20 ]
  39. [ mpi-test wait_all_vector_test : : : 2 ]
  40. [ mpi-test scan_test ]
  41. [ mpi-test scatter_test ]
  42. # Note: Microsoft MPI fails all skeleton-content tests
  43. [ mpi-test skeleton_content_test : : : 2 3 4 7 8 13 17 ]
  44. [ mpi-test graph_topology_test : : : 2 7 13 ]
  45. [ mpi-test cartesian_topology_test : : : 24 ]
  46. [ mpi-test pointer_test : : : 2 ]
  47. [ mpi-test groups_test ]
  48. # tests that require -std=c++11
  49. [ mpi-test sendrecv_vector : : : 2 ]
  50. # Intel MPI 2018 and older are axtected to fail:
  51. [ mpi-test non_blocking_any_source : : : 2 17 ]
  52. ;
  53. }