iota.hpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_ALGORITHM_IOTA_HPP
  11. #define BOOST_COMPUTE_ALGORITHM_IOTA_HPP
  12. #include <boost/static_assert.hpp>
  13. #include <boost/compute/system.hpp>
  14. #include <boost/compute/command_queue.hpp>
  15. #include <boost/compute/algorithm/copy.hpp>
  16. #include <boost/compute/iterator/counting_iterator.hpp>
  17. #include <boost/compute/type_traits/is_device_iterator.hpp>
  18. namespace boost {
  19. namespace compute {
  20. /// Fills the range [\p first, \p last) with sequential values starting at
  21. /// \p value.
  22. ///
  23. /// For example, the following code:
  24. /// \snippet test/test_iota.cpp iota
  25. ///
  26. /// Will fill \c vec with the values (\c 0, \c 1, \c 2, \c ...).
  27. ///
  28. /// Space complexity: \Omega(1)
  29. template<class BufferIterator, class T>
  30. inline void iota(BufferIterator first,
  31. BufferIterator last,
  32. const T &value,
  33. command_queue &queue = system::default_queue())
  34. {
  35. BOOST_STATIC_ASSERT(is_device_iterator<BufferIterator>::value);
  36. T count = static_cast<T>(detail::iterator_range_size(first, last));
  37. copy(
  38. ::boost::compute::make_counting_iterator(value),
  39. ::boost::compute::make_counting_iterator(value + count),
  40. first,
  41. queue
  42. );
  43. }
  44. } // end compute namespace
  45. } // end boost namespace
  46. #endif // BOOST_COMPUTE_ALGORITHM_IOTA_HPP