compute.hpp 1.5 KB

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