123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- #ifndef BOOST_COMPUTE_CONTAINER_MAPPED_VIEW_HPP
- #define BOOST_COMPUTE_CONTAINER_MAPPED_VIEW_HPP
- #include <cstddef>
- #include <exception>
- #include <boost/config.hpp>
- #include <boost/throw_exception.hpp>
- #include <boost/compute/buffer.hpp>
- #include <boost/compute/system.hpp>
- #include <boost/compute/context.hpp>
- #include <boost/compute/command_queue.hpp>
- #include <boost/compute/iterator/buffer_iterator.hpp>
- namespace boost {
- namespace compute {
- template<class T>
- class mapped_view
- {
- public:
- typedef T value_type;
- typedef size_t size_type;
- typedef ptrdiff_t difference_type;
- typedef buffer_iterator<T> iterator;
- typedef buffer_iterator<T> const_iterator;
-
- mapped_view()
- {
- m_mapped_ptr = 0;
- }
-
-
-
-
- mapped_view(T *host_ptr,
- size_type n,
- const context &context = system::default_context())
- : m_buffer(_make_mapped_buffer(host_ptr, n, context))
- {
- m_mapped_ptr = 0;
- }
-
-
-
-
- mapped_view(const T *host_ptr,
- size_type n,
- const context &context = system::default_context())
- : m_buffer(_make_mapped_buffer(host_ptr, n, context))
- {
- m_mapped_ptr = 0;
- }
-
- mapped_view(const mapped_view<T> &other)
- : m_buffer(other.m_buffer)
- {
- m_mapped_ptr = 0;
- }
-
- mapped_view<T>& operator=(const mapped_view<T> &other)
- {
- if(this != &other){
- m_buffer = other.m_buffer;
- m_mapped_ptr = 0;
- }
- return *this;
- }
-
- ~mapped_view()
- {
- }
-
- iterator begin()
- {
- return ::boost::compute::make_buffer_iterator<T>(m_buffer, 0);
- }
-
- const_iterator begin() const
- {
- return ::boost::compute::make_buffer_iterator<T>(m_buffer, 0);
- }
-
- const_iterator cbegin() const
- {
- return begin();
- }
-
- iterator end()
- {
- return ::boost::compute::make_buffer_iterator<T>(m_buffer, size());
- }
-
- const_iterator end() const
- {
- return ::boost::compute::make_buffer_iterator<T>(m_buffer, size());
- }
-
- const_iterator cend() const
- {
- return end();
- }
-
- size_type size() const
- {
- return m_buffer.size() / sizeof(T);
- }
-
- T* get_host_ptr()
- {
- return static_cast<T *>(m_buffer.get_info<void *>(CL_MEM_HOST_PTR));
- }
-
- const T* get_host_ptr() const
- {
- return static_cast<T *>(m_buffer.get_info<void *>(CL_MEM_HOST_PTR));
- }
-
- void resize(size_type size)
- {
- T *old_ptr = get_host_ptr();
- m_buffer = _make_mapped_buffer(old_ptr, size, m_buffer.get_context());
- }
-
- bool empty() const
- {
- return size() == 0;
- }
-
- const buffer& get_buffer() const
- {
- return m_buffer;
- }
-
-
-
- void map(cl_map_flags flags, command_queue &queue)
- {
- BOOST_ASSERT(m_mapped_ptr == 0);
- m_mapped_ptr = queue.enqueue_map_buffer(
- m_buffer, flags, 0, m_buffer.size()
- );
- }
-
-
-
-
-
-
- void map(command_queue &queue)
- {
- map(CL_MAP_READ | CL_MAP_WRITE, queue);
- }
-
-
-
- void unmap(command_queue &queue)
- {
- BOOST_ASSERT(m_mapped_ptr != 0);
- queue.enqueue_unmap_buffer(m_buffer, m_mapped_ptr);
- m_mapped_ptr = 0;
- }
- private:
-
- static buffer _make_mapped_buffer(T *host_ptr,
- size_t n,
- const context &context)
- {
- return buffer(
- context,
- n * sizeof(T),
- buffer::read_write | buffer::use_host_ptr,
- host_ptr
- );
- }
-
- static buffer _make_mapped_buffer(const T *host_ptr,
- size_t n,
- const context &context)
- {
- return buffer(
- context,
- n * sizeof(T),
- buffer::read_only | buffer::use_host_ptr,
- const_cast<void *>(static_cast<const void *>(host_ptr))
- );
- }
- private:
- buffer m_buffer;
- void *m_mapped_ptr;
- };
- }
- }
- #endif
|