config.hpp 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. // See http://boostorg.github.com/compute for more information.
  9. //---------------------------------------------------------------------------//
  10. #ifndef BOOST_COMPUTE_CONFIG_HPP
  11. #define BOOST_COMPUTE_CONFIG_HPP
  12. #include <boost/config.hpp>
  13. #include <boost/version.hpp>
  14. #include <boost/compute/cl.hpp>
  15. // check for minimum required boost version
  16. #if BOOST_VERSION < 104800
  17. #error Boost.Compute requires Boost version 1.48 or later
  18. #endif
  19. // the BOOST_COMPUTE_NO_VARIADIC_TEMPLATES macro is defined
  20. // if the compiler does not *fully* support variadic templates
  21. #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || \
  22. defined(BOOST_NO_VARIADIC_TEMPLATES) || \
  23. (defined(__GNUC__) && !defined(__clang__) && \
  24. __GNUC__ == 4 && __GNUC_MINOR__ <= 6)
  25. #define BOOST_COMPUTE_NO_VARIADIC_TEMPLATES
  26. #endif // BOOST_NO_CXX11_VARIADIC_TEMPLATES
  27. // the BOOST_COMPUTE_NO_STD_TUPLE macro is defined if the
  28. // compiler/stdlib does not support std::tuple
  29. #if defined(BOOST_NO_CXX11_HDR_TUPLE) || \
  30. defined(BOOST_NO_0X_HDR_TUPLE) || \
  31. defined(BOOST_COMPUTE_NO_VARIADIC_TEMPLATES)
  32. #define BOOST_COMPUTE_NO_STD_TUPLE
  33. #endif // BOOST_NO_CXX11_HDR_TUPLE
  34. // defines BOOST_COMPUTE_CL_CALLBACK to the value of CL_CALLBACK
  35. // if it is defined (it was added in OpenCL 1.1). this is used to
  36. // annotate certain callback functions registered with OpenCL
  37. #ifdef CL_CALLBACK
  38. # define BOOST_COMPUTE_CL_CALLBACK CL_CALLBACK
  39. #else
  40. # define BOOST_COMPUTE_CL_CALLBACK
  41. #endif
  42. // Maximum number of iterators acceptable for make_zip_iterator
  43. #ifndef BOOST_COMPUTE_MAX_ARITY
  44. // should be no more than max boost::tuple size (10 by default)
  45. # define BOOST_COMPUTE_MAX_ARITY 10
  46. #endif
  47. #if !defined(BOOST_COMPUTE_DOXYGEN_INVOKED) && \
  48. (defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || defined(BOOST_NO_RVALUE_REFERENCES))
  49. # define BOOST_COMPUTE_NO_RVALUE_REFERENCES
  50. #endif // BOOST_NO_CXX11_RVALUE_REFERENCES
  51. #if defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST) || \
  52. defined(BOOST_NO_0X_HDR_INITIALIZER_LIST)
  53. # define BOOST_COMPUTE_NO_HDR_INITIALIZER_LIST
  54. #endif // BOOST_NO_CXX11_HDR_INITIALIZER_LIST
  55. #if defined(BOOST_NO_CXX11_HDR_CHRONO) || \
  56. defined(BOOST_NO_0X_HDR_CHRONO)
  57. # define BOOST_COMPUTE_NO_HDR_CHRONO
  58. #endif // BOOST_NO_CXX11_HDR_CHRONO
  59. #endif // BOOST_COMPUTE_CONFIG_HPP