summaryrefslogtreecommitdiff
path: root/boost/compute/config.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/compute/config.hpp')
-rw-r--r--boost/compute/config.hpp70
1 files changed, 70 insertions, 0 deletions
diff --git a/boost/compute/config.hpp b/boost/compute/config.hpp
new file mode 100644
index 0000000000..77d0d7b9df
--- /dev/null
+++ b/boost/compute/config.hpp
@@ -0,0 +1,70 @@
+//---------------------------------------------------------------------------//
+// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
+
+#ifndef BOOST_COMPUTE_CONFIG_HPP
+#define BOOST_COMPUTE_CONFIG_HPP
+
+#include <boost/config.hpp>
+#include <boost/version.hpp>
+#include <boost/compute/cl.hpp>
+
+// check for minimum required boost version
+#if BOOST_VERSION < 104800
+#error Boost.Compute requires Boost version 1.48 or later
+#endif
+
+// the BOOST_COMPUTE_NO_VARIADIC_TEMPLATES macro is defined
+// if the compiler does not *fully* support variadic templates
+#if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || \
+ defined(BOOST_NO_VARIADIC_TEMPLATES) || \
+ (defined(__GNUC__) && !defined(__clang__) && \
+ __GNUC__ == 4 && __GNUC_MINOR__ <= 6)
+ #define BOOST_COMPUTE_NO_VARIADIC_TEMPLATES
+#endif // BOOST_NO_CXX11_VARIADIC_TEMPLATES
+
+// the BOOST_COMPUTE_NO_STD_TUPLE macro is defined if the
+// compiler/stdlib does not support std::tuple
+#if defined(BOOST_NO_CXX11_HDR_TUPLE) || \
+ defined(BOOST_NO_0X_HDR_TUPLE) || \
+ defined(BOOST_COMPUTE_NO_VARIADIC_TEMPLATES)
+ #define BOOST_COMPUTE_NO_STD_TUPLE
+#endif // BOOST_NO_CXX11_HDR_TUPLE
+
+// defines BOOST_COMPUTE_CL_CALLBACK to the value of CL_CALLBACK
+// if it is defined (it was added in OpenCL 1.1). this is used to
+// annotate certain callback functions registered with OpenCL
+#ifdef CL_CALLBACK
+# define BOOST_COMPUTE_CL_CALLBACK CL_CALLBACK
+#else
+# define BOOST_COMPUTE_CL_CALLBACK
+#endif
+
+// Maximum number of iterators acceptable for make_zip_iterator
+#ifndef BOOST_COMPUTE_MAX_ARITY
+ // should be no more than max boost::tuple size (10 by default)
+# define BOOST_COMPUTE_MAX_ARITY 10
+#endif
+
+#if !defined(BOOST_COMPUTE_DOXYGEN_INVOKED) && \
+ (defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || defined(BOOST_NO_RVALUE_REFERENCES))
+# define BOOST_COMPUTE_NO_RVALUE_REFERENCES
+#endif // BOOST_NO_CXX11_RVALUE_REFERENCES
+
+#if defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST) || \
+ defined(BOOST_NO_0X_HDR_INITIALIZER_LIST)
+# define BOOST_COMPUTE_NO_HDR_INITIALIZER_LIST
+#endif // BOOST_NO_CXX11_HDR_INITIALIZER_LIST
+
+#if defined(BOOST_NO_CXX11_HDR_CHRONO) || \
+ defined(BOOST_NO_0X_HDR_CHRONO)
+# define BOOST_COMPUTE_NO_HDR_CHRONO
+#endif // BOOST_NO_CXX11_HDR_CHRONO
+
+#endif // BOOST_COMPUTE_CONFIG_HPP