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 
11 #ifndef BOOST_COMPUTE_HPP
12 #define BOOST_COMPUTE_HPP
13 
14 #include <boost/compute/algorithm.hpp>
15 #include <boost/compute/allocator.hpp>
16 #include <boost/compute/async.hpp>
17 #include <boost/compute/buffer.hpp>
18 #include <boost/compute/cl.hpp>
19 #include <boost/compute/command_queue.hpp>
20 #include <boost/compute/config.hpp>
21 #include <boost/compute/container.hpp>
22 #include <boost/compute/context.hpp>
23 #include <boost/compute/device.hpp>
24 #include <boost/compute/functional.hpp>
25 #include <boost/compute/image.hpp>
26 #include <boost/compute/iterator.hpp>
27 #include <boost/compute/kernel.hpp>
28 #include <boost/compute/lambda.hpp>
29 #include <boost/compute/pipe.hpp>
30 #include <boost/compute/platform.hpp>
31 #include <boost/compute/program.hpp>
32 #include <boost/compute/random.hpp>
33 #include <boost/compute/svm.hpp>
34 #include <boost/compute/system.hpp>
35 #include <boost/compute/types.hpp>
36 #include <boost/compute/user_event.hpp>
37 #include <boost/compute/utility.hpp>
38 #include <boost/compute/version.hpp>
39 
40 #ifdef BOOST_COMPUTE_HAVE_HDR_CL_EXT
41 #include <boost/compute/cl_ext.hpp>
42 #endif
43 
44 #endif // BOOST_COMPUTE_HPP
45