array.hpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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_ARRAY_HPP
  11. #define BOOST_COMPUTE_CONTAINER_ARRAY_HPP
  12. #include <cstddef>
  13. #include <iterator>
  14. #include <exception>
  15. #include <boost/array.hpp>
  16. #include <boost/throw_exception.hpp>
  17. #include <boost/compute/buffer.hpp>
  18. #include <boost/compute/system.hpp>
  19. #include <boost/compute/algorithm/fill.hpp>
  20. #include <boost/compute/algorithm/swap_ranges.hpp>
  21. #include <boost/compute/iterator/buffer_iterator.hpp>
  22. #include <boost/compute/type_traits/detail/capture_traits.hpp>
  23. #include <boost/compute/detail/buffer_value.hpp>
  24. namespace boost {
  25. namespace compute {
  26. /// \class array
  27. /// \brief A fixed-size container.
  28. ///
  29. /// The array container is very similar to the \ref vector container except
  30. /// its size is fixed at compile-time rather than being dynamically resizable
  31. /// at run-time.
  32. ///
  33. /// For example, to create a fixed-size array with eight values on the device:
  34. /// \code
  35. /// boost::compute::array<int, 8> values(context);
  36. /// \endcode
  37. ///
  38. /// The Boost.Compute \c array class provides a STL-like API and is modeled
  39. /// after the \c std::array class from the C++ standard library.
  40. ///
  41. /// \see \ref vector "vector<T>"
  42. template<class T, std::size_t N>
  43. class array
  44. {
  45. public:
  46. typedef T value_type;
  47. typedef std::size_t size_type;
  48. typedef ptrdiff_t difference_type;
  49. typedef detail::buffer_value<T> reference;
  50. typedef const detail::buffer_value<T> const_reference;
  51. typedef T* pointer;
  52. typedef const T* const_pointer;
  53. typedef buffer_iterator<T> iterator;
  54. typedef buffer_iterator<T> const_iterator;
  55. typedef std::reverse_iterator<iterator> reverse_iterator;
  56. typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
  57. enum {
  58. static_size = N
  59. };
  60. explicit array(const context &context = system::default_context())
  61. : m_buffer(context, sizeof(T) * N)
  62. {
  63. }
  64. array(const array<T, N> &other)
  65. : m_buffer(other.m_buffer.get_context(), sizeof(T) * N)
  66. {
  67. boost::compute::copy(other.begin(), other.end(), begin());
  68. }
  69. array(const boost::array<T, N> &array,
  70. const context &context = system::default_context())
  71. : m_buffer(context, sizeof(T) * N)
  72. {
  73. boost::compute::copy(array.begin(), array.end(), begin());
  74. }
  75. array<T, N>& operator=(const array<T, N> &other)
  76. {
  77. if(this != &other){
  78. boost::compute::copy(other.begin(), other.end(), begin());
  79. }
  80. return *this;
  81. }
  82. array<T, N>& operator=(const boost::array<T, N> &array)
  83. {
  84. boost::compute::copy(array.begin(), array.end(), begin());
  85. return *this;
  86. }
  87. ~array()
  88. {
  89. }
  90. iterator begin()
  91. {
  92. return buffer_iterator<T>(m_buffer, 0);
  93. }
  94. const_iterator begin() const
  95. {
  96. return buffer_iterator<T>(m_buffer, 0);
  97. }
  98. const_iterator cbegin() const
  99. {
  100. return begin();
  101. }
  102. iterator end()
  103. {
  104. return buffer_iterator<T>(m_buffer, N);
  105. }
  106. const_iterator end() const
  107. {
  108. return buffer_iterator<T>(m_buffer, N);
  109. }
  110. const_iterator cend() const
  111. {
  112. return end();
  113. }
  114. reverse_iterator rbegin()
  115. {
  116. return reverse_iterator(end() - 1);
  117. }
  118. const_reverse_iterator rbegin() const
  119. {
  120. return reverse_iterator(end() - 1);
  121. }
  122. const_reverse_iterator crbegin() const
  123. {
  124. return rbegin();
  125. }
  126. reverse_iterator rend()
  127. {
  128. return reverse_iterator(begin() - 1);
  129. }
  130. const_reverse_iterator rend() const
  131. {
  132. return reverse_iterator(begin() - 1);
  133. }
  134. const_reverse_iterator crend() const
  135. {
  136. return rend();
  137. }
  138. size_type size() const
  139. {
  140. return N;
  141. }
  142. bool empty() const
  143. {
  144. return N == 0;
  145. }
  146. size_type max_size() const
  147. {
  148. return N;
  149. }
  150. reference operator[](size_type index)
  151. {
  152. return *(begin() + static_cast<difference_type>(index));
  153. }
  154. const_reference operator[](size_type index) const
  155. {
  156. return *(begin() + static_cast<difference_type>(index));
  157. }
  158. reference at(size_type index)
  159. {
  160. if(index >= N){
  161. BOOST_THROW_EXCEPTION(std::out_of_range("index out of range"));
  162. }
  163. return operator[](index);
  164. }
  165. const_reference at(size_type index) const
  166. {
  167. if(index >= N){
  168. BOOST_THROW_EXCEPTION(std::out_of_range("index out of range"));
  169. }
  170. return operator[](index);
  171. }
  172. reference front()
  173. {
  174. return *begin();
  175. }
  176. const_reference front() const
  177. {
  178. return *begin();
  179. }
  180. reference back()
  181. {
  182. return *(end() - static_cast<difference_type>(1));
  183. }
  184. const_reference back() const
  185. {
  186. return *(end() - static_cast<difference_type>(1));
  187. }
  188. void fill(const value_type &value)
  189. {
  190. ::boost::compute::fill(begin(), end(), value);
  191. }
  192. void swap(array<T, N> &other)
  193. {
  194. ::boost::compute::swap_ranges(begin(), end(), other.begin());
  195. }
  196. const buffer& get_buffer() const
  197. {
  198. return m_buffer;
  199. }
  200. private:
  201. buffer m_buffer;
  202. };
  203. namespace detail {
  204. // set_kernel_arg specialization for array<T, N>
  205. template<class T, std::size_t N>
  206. struct set_kernel_arg<array<T, N> >
  207. {
  208. void operator()(kernel &kernel_, size_t index, const array<T, N> &array)
  209. {
  210. kernel_.set_arg(index, array.get_buffer());
  211. }
  212. };
  213. // for capturing array<T, N> with BOOST_COMPUTE_CLOSURE()
  214. template<class T, size_t N>
  215. struct capture_traits<array<T, N> >
  216. {
  217. static std::string type_name()
  218. {
  219. return std::string("__global ") + ::boost::compute::type_name<T>() + "*";
  220. }
  221. };
  222. // meta_kernel streaming operator for array<T, N>
  223. template<class T, size_t N>
  224. meta_kernel& operator<<(meta_kernel &k, const array<T, N> &array)
  225. {
  226. return k << k.get_buffer_identifier<T>(array.get_buffer());
  227. }
  228. } // end detail namespace
  229. } // end compute namespace
  230. } // end boost namespace
  231. #endif // BOOST_COMPUTE_CONTAINER_ARRAY_HPP