config.hpp 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // Copyright (C) 2006 Douglas Gregor <doug.gregor -at- gmail.com>
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. /** @file config.hpp
  6. *
  7. * This header provides MPI configuration details that expose the
  8. * capabilities of the underlying MPI implementation, and provides
  9. * auto-linking support on Windows.
  10. */
  11. #ifndef BOOST_MPI_CONFIG_HPP
  12. #define BOOST_MPI_CONFIG_HPP
  13. /* Force MPICH not to define SEEK_SET, SEEK_CUR, and SEEK_END, which
  14. conflict with the versions in <stdio.h> and <cstdio>. */
  15. #define MPICH_IGNORE_CXX_SEEK 1
  16. #include <mpi.h>
  17. #include <boost/config.hpp>
  18. /** @brief Comment this macro is you are running in an heterogeneous environement.
  19. *
  20. * When this flags is enabled, we assume some simple, POD like, type can be
  21. * transmited without paying the cost of portable serialization.
  22. *
  23. * Comment this if your platform is not homogeneous and that portable
  24. * serialization/deserialization must be performed.
  25. *
  26. * It you do so, check that you MPI implementation supports thats kind of environement.
  27. */
  28. #define BOOST_MPI_HOMOGENEOUS
  29. // If this is an MPI-2 implementation, define configuration macros for
  30. // the features we are interested in.
  31. #if defined(MPI_VERSION) && MPI_VERSION >= 2
  32. /** @brief Determine if the MPI implementation has support for memory
  33. * allocation.
  34. *
  35. * This macro will be defined when the underlying MPI implementation
  36. * has support for the MPI-2 memory allocation routines @c
  37. * MPI_Alloc_mem and @c MPI_Free_mem. When defined, the @c allocator
  38. * class template will provide Standard Library-compliant access to
  39. * these memory-allocation routines.
  40. */
  41. # define BOOST_MPI_HAS_MEMORY_ALLOCATION
  42. /** @brief Determine if the MPI implementation has supports initialization
  43. * without command-line arguments.
  44. *
  45. * This macro will be defined when the underlying implementation
  46. * supports initialization of MPI without passing along command-line
  47. * arguments, e.g., @c MPI_Init(NULL, NULL). When defined, the @c
  48. * environment class will provide a default constructor. This macro is
  49. * always defined for MPI-2 implementations. */
  50. # define BOOST_MPI_HAS_NOARG_INITIALIZATION
  51. #else
  52. // If this is an MPI-1.x implementation, no arg initialization for
  53. // mpi environement could still be available, but not mandatory.
  54. // Undef this if no arg init is available:
  55. //# define BOOST_MPI_HAS_NOARG_INITIALIZATION
  56. #endif
  57. #if defined(MPIAPI)
  58. # define BOOST_MPI_CALLING_CONVENTION MPIAPI
  59. #else
  60. /** @brief Specifies the calling convention that will be used for callbacks
  61. * from the underlying C MPI.
  62. *
  63. * This is a Windows-specific macro, which will be used internally to state
  64. * the calling convention of any function that is to be used as a callback
  65. * from MPI. For example, the internally-defined functions that are used in
  66. * a call to @c MPI_Op_create. This macro is likely only to be useful to
  67. * users that wish to bypass Boost.MPI, registering their own callbacks in
  68. * certain cases, e.g., through @c MPI_Op_create.
  69. */
  70. # define BOOST_MPI_CALLING_CONVENTION
  71. #endif
  72. /** @brief Indicates that MPI_Bcast supports MPI_BOTTOM.
  73. *
  74. * Some implementations have a broken MPI_Bcast wrt to MPI_BOTTOM.
  75. * BullX MPI and LAM seems to be among them, at least for some versions.
  76. * The `broacast_test.cpp` test `test_skeleton_and_content` can be used to
  77. * detect that.
  78. */
  79. #define BOOST_MPI_BCAST_BOTTOM_WORKS_FINE
  80. #if defined(LAM_MPI)
  81. // Configuration for LAM/MPI
  82. # define BOOST_MPI_HAS_MEMORY_ALLOCATION
  83. # define BOOST_MPI_HAS_NOARG_INITIALIZATION
  84. # undef BOOST_MPI_BCAST_BOTTOM_WORKS_FINE
  85. #elif defined(MPICH_NAME)
  86. // Configuration for MPICH
  87. #endif
  88. /*****************************************************************************
  89. * *
  90. * DLL import/export options *
  91. * *
  92. *****************************************************************************/
  93. #if (defined(BOOST_MPI_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)) && !defined(BOOST_MPI_STATIC_LINK)
  94. # if defined(BOOST_MPI_SOURCE)
  95. # define BOOST_MPI_DECL BOOST_SYMBOL_EXPORT
  96. # define BOOST_MPI_BUILD_DLL
  97. # else
  98. # define BOOST_MPI_DECL BOOST_SYMBOL_IMPORT
  99. # endif
  100. #endif
  101. #ifndef BOOST_MPI_DECL
  102. # define BOOST_MPI_DECL
  103. #endif
  104. #if !defined(BOOST_MPI_NO_LIB) && !defined(BOOST_MPI_SOURCE) && !defined(BOOST_ALL_NO_LIB) && defined(__cplusplus)
  105. # define BOOST_LIB_NAME boost_mpi
  106. # if defined(BOOST_MPI_DYN_LINK) || defined(BOOST_ALL_DYN_LINK)
  107. # define BOOST_DYN_LINK
  108. # endif
  109. # ifdef BOOST_MPI_DIAG
  110. # define BOOST_LIB_DIAGNOSTIC
  111. # endif
  112. # include <boost/config/auto_link.hpp>
  113. #endif
  114. #endif // BOOST_MPI_CONFIG_HPP