summaryrefslogtreecommitdiff
path: root/boost/compute/memory/svm_ptr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/compute/memory/svm_ptr.hpp')
-rw-r--r--boost/compute/memory/svm_ptr.hpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/boost/compute/memory/svm_ptr.hpp b/boost/compute/memory/svm_ptr.hpp
index 0c9d88035c..c8753f5b34 100644
--- a/boost/compute/memory/svm_ptr.hpp
+++ b/boost/compute/memory/svm_ptr.hpp
@@ -29,7 +29,7 @@ template<class T>
class svm_ptr;
// svm functions require OpenCL 2.0
-#if defined(CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED)
+#if defined(BOOST_COMPUTE_CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED)
namespace detail {
template<class T, class IndexExpr>
@@ -131,8 +131,18 @@ public:
return m_context;
}
+ bool operator==(const svm_ptr<T>& other) const
+ {
+ return (other.m_context == m_context) && (m_ptr == other.m_ptr);
+ }
+
+ bool operator!=(const svm_ptr<T>& other) const
+ {
+ return (other.m_context != m_context) || (m_ptr != other.m_ptr);
+ }
+
// svm functions require OpenCL 2.0
- #if defined(CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED)
+ #if defined(BOOST_COMPUTE_CL_VERSION_2_0) || defined(BOOST_COMPUTE_DOXYGEN_INVOKED)
/// \internal_
template<class Expr>
detail::svm_ptr_index_expr<T, Expr>