stabilize build system: depends, installer, boost/bdb fixes, cross targets groundwork
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
//---------------------------------------------------------------------------//
|
||||
// Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com>
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0
|
||||
// See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
// See http://boostorg.github.com/compute for more information.
|
||||
//---------------------------------------------------------------------------//
|
||||
|
||||
#ifndef BOOST_COMPUTE_MEMORY_LOCAL_BUFFER_HPP
|
||||
#define BOOST_COMPUTE_MEMORY_LOCAL_BUFFER_HPP
|
||||
|
||||
#include <boost/compute/cl.hpp>
|
||||
#include <boost/compute/kernel.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace compute {
|
||||
|
||||
/// \class local_buffer
|
||||
/// \brief Represents a local memory buffer on the device.
|
||||
///
|
||||
/// The local_buffer class represents a block of local memory on a compute
|
||||
/// device.
|
||||
///
|
||||
/// This class is most commonly used to set local memory arguments for compute
|
||||
/// kernels:
|
||||
/// \code
|
||||
/// // set argument to a local buffer with storage for 32 float's
|
||||
/// kernel.set_arg(0, local_buffer<float>(32));
|
||||
/// \endcode
|
||||
///
|
||||
/// \see buffer, kernel
|
||||
template<class T>
|
||||
class local_buffer
|
||||
{
|
||||
public:
|
||||
/// Creates a local buffer object for \p size elements.
|
||||
local_buffer(const size_t size)
|
||||
: m_size(size)
|
||||
{
|
||||
}
|
||||
|
||||
/// Creates a local buffer object as a copy of \p other.
|
||||
local_buffer(const local_buffer &other)
|
||||
: m_size(other.m_size)
|
||||
{
|
||||
}
|
||||
|
||||
/// Copies \p other to \c *this.
|
||||
local_buffer& operator=(const local_buffer &other)
|
||||
{
|
||||
if(this != &other){
|
||||
m_size = other.m_size;
|
||||
}
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// Destroys the local memory object.
|
||||
~local_buffer()
|
||||
{
|
||||
}
|
||||
|
||||
/// Returns the number of elements in the local buffer.
|
||||
size_t size() const
|
||||
{
|
||||
return m_size;
|
||||
}
|
||||
|
||||
private:
|
||||
size_t m_size;
|
||||
};
|
||||
|
||||
namespace detail {
|
||||
|
||||
// set_kernel_arg specialization for local_buffer<T>
|
||||
template<class T>
|
||||
struct set_kernel_arg<local_buffer<T> >
|
||||
{
|
||||
void operator()(kernel &kernel_, size_t index, const local_buffer<T> &buffer)
|
||||
{
|
||||
kernel_.set_arg(index, buffer.size() * sizeof(T), 0);
|
||||
}
|
||||
};
|
||||
|
||||
} // end detail namespace
|
||||
} // end compute namespace
|
||||
} // end boost namespace
|
||||
|
||||
#endif // BOOST_COMPUTE_MEMORY_SVM_PTR_HPP
|
||||
@@ -0,0 +1,174 @@
|
||||
//---------------------------------------------------------------------------//
|
||||
// Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com>
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0
|
||||
// See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
// See http://boostorg.github.com/compute for more information.
|
||||
//---------------------------------------------------------------------------//
|
||||
|
||||
#ifndef BOOST_COMPUTE_MEMORY_SVM_PTR_HPP
|
||||
#define BOOST_COMPUTE_MEMORY_SVM_PTR_HPP
|
||||
|
||||
#include <boost/type_traits.hpp>
|
||||
#include <boost/static_assert.hpp>
|
||||
#include <boost/assert.hpp>
|
||||
|
||||
#include <boost/compute/cl.hpp>
|
||||
#include <boost/compute/kernel.hpp>
|
||||
#include <boost/compute/context.hpp>
|
||||
#include <boost/compute/command_queue.hpp>
|
||||
#include <boost/compute/type_traits/is_device_iterator.hpp>
|
||||
|
||||
namespace boost {
|
||||
namespace compute {
|
||||
|
||||
// forward declaration for svm_ptr<T>
|
||||
template<class T>
|
||||
class svm_ptr;
|
||||
|
||||
// svm functions require OpenCL 2.0
|
||||
#if defined(CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED)
|
||||
namespace detail {
|
||||
|
||||
template<class T, class IndexExpr>
|
||||
struct svm_ptr_index_expr
|
||||
{
|
||||
typedef T result_type;
|
||||
|
||||
svm_ptr_index_expr(const svm_ptr<T> &svm_ptr,
|
||||
const IndexExpr &expr)
|
||||
: m_svm_ptr(svm_ptr),
|
||||
m_expr(expr)
|
||||
{
|
||||
}
|
||||
|
||||
operator T() const
|
||||
{
|
||||
BOOST_STATIC_ASSERT_MSG(boost::is_integral<IndexExpr>::value,
|
||||
"Index expression must be integral");
|
||||
|
||||
BOOST_ASSERT(m_svm_ptr.get());
|
||||
|
||||
const context &context = m_svm_ptr.get_context();
|
||||
const device &device = context.get_device();
|
||||
command_queue queue(context, device);
|
||||
|
||||
T value;
|
||||
T* ptr =
|
||||
static_cast<T*>(m_svm_ptr.get()) + static_cast<std::ptrdiff_t>(m_expr);
|
||||
queue.enqueue_svm_map(static_cast<void*>(ptr), sizeof(T), CL_MAP_READ);
|
||||
value = *(ptr);
|
||||
queue.enqueue_svm_unmap(static_cast<void*>(ptr)).wait();
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
const svm_ptr<T> &m_svm_ptr;
|
||||
IndexExpr m_expr;
|
||||
};
|
||||
|
||||
} // end detail namespace
|
||||
#endif
|
||||
|
||||
template<class T>
|
||||
class svm_ptr
|
||||
{
|
||||
public:
|
||||
typedef T value_type;
|
||||
typedef std::ptrdiff_t difference_type;
|
||||
typedef T* pointer;
|
||||
typedef T& reference;
|
||||
typedef std::random_access_iterator_tag iterator_category;
|
||||
|
||||
svm_ptr()
|
||||
: m_ptr(0)
|
||||
{
|
||||
}
|
||||
|
||||
svm_ptr(void *ptr, const context &context)
|
||||
: m_ptr(static_cast<T*>(ptr)),
|
||||
m_context(context)
|
||||
{
|
||||
}
|
||||
|
||||
svm_ptr(const svm_ptr<T> &other)
|
||||
: m_ptr(other.m_ptr),
|
||||
m_context(other.m_context)
|
||||
{
|
||||
}
|
||||
|
||||
svm_ptr<T>& operator=(const svm_ptr<T> &other)
|
||||
{
|
||||
m_ptr = other.m_ptr;
|
||||
m_context = other.m_context;
|
||||
return *this;
|
||||
}
|
||||
|
||||
~svm_ptr()
|
||||
{
|
||||
}
|
||||
|
||||
void* get() const
|
||||
{
|
||||
return m_ptr;
|
||||
}
|
||||
|
||||
svm_ptr<T> operator+(difference_type n)
|
||||
{
|
||||
return svm_ptr<T>(m_ptr + n, m_context);
|
||||
}
|
||||
|
||||
difference_type operator-(svm_ptr<T> other)
|
||||
{
|
||||
BOOST_ASSERT(other.m_context == m_context);
|
||||
return m_ptr - other.m_ptr;
|
||||
}
|
||||
|
||||
context& get_context() const
|
||||
{
|
||||
return m_context;
|
||||
}
|
||||
|
||||
// svm functions require OpenCL 2.0
|
||||
#if defined(CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED)
|
||||
/// \internal_
|
||||
template<class Expr>
|
||||
detail::svm_ptr_index_expr<T, Expr>
|
||||
operator[](const Expr &expr) const
|
||||
{
|
||||
BOOST_ASSERT(m_ptr);
|
||||
|
||||
return detail::svm_ptr_index_expr<T, Expr>(*this,
|
||||
expr);
|
||||
}
|
||||
#endif
|
||||
|
||||
private:
|
||||
T *m_ptr;
|
||||
context m_context;
|
||||
};
|
||||
|
||||
namespace detail {
|
||||
|
||||
/// \internal_
|
||||
template<class T>
|
||||
struct set_kernel_arg<svm_ptr<T> >
|
||||
{
|
||||
void operator()(kernel &kernel_, size_t index, const svm_ptr<T> &ptr)
|
||||
{
|
||||
kernel_.set_arg_svm_ptr(index, ptr.get());
|
||||
}
|
||||
};
|
||||
|
||||
} // end detail namespace
|
||||
|
||||
/// \internal_ (is_device_iterator specialization for svm_ptr)
|
||||
template<class T>
|
||||
struct is_device_iterator<svm_ptr<T> > : boost::true_type {};
|
||||
|
||||
} // end compute namespace
|
||||
} // end boost namespace
|
||||
|
||||
#endif // BOOST_COMPUTE_MEMORY_SVM_PTR_HPP
|
||||
Reference in New Issue
Block a user