scalar.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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_CONTAINER_DETAIL_SCALAR_HPP
  11. #define BOOST_COMPUTE_CONTAINER_DETAIL_SCALAR_HPP
  12. #include <boost/compute/buffer.hpp>
  13. #include <boost/compute/detail/read_write_single_value.hpp>
  14. namespace boost {
  15. namespace compute {
  16. namespace detail {
  17. // scalar<T> provides a trivial "container" that stores a
  18. // single value in a memory buffer on a compute device
  19. template<class T>
  20. class scalar
  21. {
  22. public:
  23. typedef T value_type;
  24. scalar(const context &context)
  25. : m_buffer(context, sizeof(T))
  26. {
  27. }
  28. ~scalar()
  29. {
  30. }
  31. T read(command_queue &queue) const
  32. {
  33. return read_single_value<T>(m_buffer, 0, queue);
  34. }
  35. void write(const T &value, command_queue &queue)
  36. {
  37. write_single_value<T>(value, m_buffer, 0, queue);
  38. }
  39. const buffer& get_buffer() const
  40. {
  41. return m_buffer;
  42. }
  43. private:
  44. buffer m_buffer;
  45. };
  46. } // end detail namespace
  47. } // end compute namespace
  48. } // end boost namespace
  49. #endif // BOOST_COMPUTE_CONTAINER_DETAIL_SCALAR_HPP