syclreference.com
  1. SYCL
  2. | API Reference
  3. | multi_ptr
  4. | operator<=

operator<=

MISSING


template <typename dataType, cl::sycl::access::address_space Space>
bool operator<=(const cl::sycl::multi_ptr<dataType, Space> & lhs, const cl::sycl::multi_ptr<dataType, Space> & rhs)
(1)
template <typename dataType, cl::sycl::access::address_space Space>
bool operator<=(const cl::sycl::multi_ptr<dataType, Space> & lhs, std::nullptr_t rhs)
(2)
template <typename dataType, cl::sycl::access::address_space Space>
bool operator<=(std::nullptr_t lhs, const cl::sycl::multi_ptr<dataType, Space> & rhs)
(3)
template <typename dataType>
bool operator<=(const cl::sycl::constant_ptr<dataType> & lhs, const cl::sycl::constant_ptr<dataType> & rhs)
(4)
template <typename dataType>
bool operator<=(const cl::sycl::constant_ptr<dataType> & lhs, std::nullptr_t rhs)
(5)
template <typename dataType>
bool operator<=(const cl::sycl::global_ptr<dataType> & lhs, const cl::sycl::global_ptr<dataType> & rhs)
(6)
template <typename dataType>
bool operator<=(const cl::sycl::global_ptr<dataType> & lhs, std::nullptr_t rhs)
(7)
template <typename dataType>
bool operator<=(const cl::sycl::local_ptr<dataType> & lhs, const cl::sycl::local_ptr<dataType> & rhs)
(8)
template <typename dataType>
bool operator<=(const cl::sycl::local_ptr<dataType> & lhs, std::nullptr_t rhs)
(9)
template <typename dataType>
bool operator<=(const cl::sycl::private_ptr<dataType> & lhs, const cl::sycl::private_ptr<dataType> & rhs)
(10)
template <typename dataType>
bool operator<=(const cl::sycl::private_ptr<dataType> & lhs, std::nullptr_t rhs)
(11)
template <typename dataType>
bool operator<=(std::nullptr_t lhs, const cl::sycl::constant_ptr<dataType> & rhs)
(12)
template <typename dataType>
bool operator<=(std::nullptr_t lhs, const cl::sycl::global_ptr<dataType> & rhs)
(13)
template <typename dataType>
bool operator<=(std::nullptr_t lhs, const cl::sycl::local_ptr<dataType> & rhs)
(14)
template <typename dataType>
bool operator<=(std::nullptr_t lhs, const cl::sycl::private_ptr<dataType> & rhs)
(15)
  1. Less or equal than operator.
    Parameters:
    • const cl::sycl::multi_ptr<dataType, Space> & lhs
    • const cl::sycl::multi_ptr<dataType, Space> & rhs
    Returns: True if the lhs parameter address is less or equal to rhs, false
  2. Less or equal than operator.
    Parameters:
    • const cl::sycl::multi_ptr<dataType, Space> & lhs
    • std::nullptr_t rhs
    Returns: True if the lhs parameter is less or equal to null.
  3. Less or equal than operator.
    Parameters:
    • std::nullptr_t lhs
    • const cl::sycl::multi_ptr<dataType, Space> & rhs
    Returns: True if the rhs parameter is greater or equal to null.

  4. Parameters:
    • const cl::sycl::constant_ptr<dataType> & lhs
    • const cl::sycl::constant_ptr<dataType> & rhs

  5. Parameters:
    • const cl::sycl::constant_ptr<dataType> & lhs
    • std::nullptr_t rhs

  6. Parameters:
    • const cl::sycl::global_ptr<dataType> & lhs
    • const cl::sycl::global_ptr<dataType> & rhs

  7. Parameters:
    • const cl::sycl::global_ptr<dataType> & lhs
    • std::nullptr_t rhs

  8. Parameters:
    • const cl::sycl::local_ptr<dataType> & lhs
    • const cl::sycl::local_ptr<dataType> & rhs

  9. Parameters:
    • const cl::sycl::local_ptr<dataType> & lhs
    • std::nullptr_t rhs

  10. Parameters:
    • const cl::sycl::private_ptr<dataType> & lhs
    • const cl::sycl::private_ptr<dataType> & rhs

  11. Parameters:
    • const cl::sycl::private_ptr<dataType> & lhs
    • std::nullptr_t rhs

  12. Parameters:
    • std::nullptr_t lhs
    • const cl::sycl::constant_ptr<dataType> & rhs

  13. Parameters:
    • std::nullptr_t lhs
    • const cl::sycl::global_ptr<dataType> & rhs

  14. Parameters:
    • std::nullptr_t lhs
    • const cl::sycl::local_ptr<dataType> & rhs

  15. Parameters:
    • std::nullptr_t lhs
    • const cl::sycl::private_ptr<dataType> & rhs

syclreference.com — SYCL Reference Pages

Last updated: 2019-01-24 00:24:52 +0000