DPC++ Runtime
Runtime libraries for oneAPI DPC++
handler.hpp File Reference
#include <sycl/access/access.hpp>
#include <sycl/accessor.hpp>
#include <sycl/context.hpp>
#include <sycl/detail/cg.hpp>
#include <sycl/detail/cg_types.hpp>
#include <sycl/detail/common.hpp>
#include <sycl/detail/defines_elementary.hpp>
#include <sycl/detail/export.hpp>
#include <sycl/detail/impl_utils.hpp>
#include <sycl/detail/kernel_desc.hpp>
#include <sycl/detail/pi.h>
#include <sycl/detail/pi.hpp>
#include <sycl/detail/reduction_forward.hpp>
#include <sycl/device.hpp>
#include <sycl/event.hpp>
#include <sycl/exception.hpp>
#include <sycl/ext/intel/experimental/fp_control_kernel_properties.hpp>
#include <sycl/ext/intel/experimental/kernel_execution_properties.hpp>
#include <sycl/ext/oneapi/bindless_images_descriptor.hpp>
#include <sycl/ext/oneapi/bindless_images_interop.hpp>
#include <sycl/ext/oneapi/bindless_images_memory.hpp>
#include <sycl/ext/oneapi/device_global/device_global.hpp>
#include <sycl/ext/oneapi/device_global/properties.hpp>
#include <sycl/ext/oneapi/experimental/graph.hpp>
#include <sycl/ext/oneapi/experimental/root_group.hpp>
#include <sycl/ext/oneapi/kernel_properties/properties.hpp>
#include <sycl/ext/oneapi/properties/properties.hpp>
#include <sycl/group.hpp>
#include <sycl/id.hpp>
#include <sycl/interop_handle.hpp>
#include <sycl/item.hpp>
#include <sycl/kernel.hpp>
#include <sycl/kernel_bundle.hpp>
#include <sycl/kernel_bundle_enums.hpp>
#include <sycl/kernel_handler.hpp>
#include <sycl/nd_item.hpp>
#include <sycl/nd_range.hpp>
#include <sycl/property_list.hpp>
#include <sycl/range.hpp>
#include <sycl/sampler.hpp>
#include <assert.h>
#include <functional>
#include <memory>
#include <stddef.h>
#include <stdint.h>
#include <string>
#include <tuple>
#include <type_traits>
#include <utility>
#include <vector>
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  sycl::_V1::detail::get_kernel_wrapper_name_t< Type >
 
struct  sycl::_V1::detail::GetMergedKernelProperties< KernelType, PropertiesT, Cond >
 
struct  sycl::_V1::detail::GetMergedKernelProperties< KernelType, PropertiesT, std::enable_if_t< ext::oneapi::experimental::detail::HasKernelPropertiesGetMethod< KernelType >::value > >
 
class  sycl::_V1::detail::RoundedRangeIDGenerator< Dims >
 
class  sycl::_V1::detail::RoundedRangeKernel< TransformedArgType, Dims, KernelType >
 
class  sycl::_V1::detail::RoundedRangeKernelWithKH< TransformedArgType, Dims, KernelType >
 
class  sycl::_V1::handler
 Command group handler class. More...
 
struct  sycl::_V1::handler::ShouldEnableSetArg< T >
 

Namespaces

 sycl
 
 sycl::_V1
 
 sycl::_V1::ext
 
 sycl::_V1::ext::intel
 
 sycl::_V1::ext::intel::experimental
 
 sycl::_V1::ext::oneapi
 
 sycl::_V1::ext::oneapi::experimental
 
 sycl::_V1::ext::oneapi::experimental::detail
 
 sycl::_V1::detail
 

Macros

#define __SYCL_NONCONST_FUNCTOR__
 
#define _KERNELFUNCPARAMTYPE   KernelType
 
#define _KERNELFUNCPARAM(a)   _KERNELFUNCPARAMTYPE a
 
#define __SYCL_KERNEL_ATTR__
 

Typedefs

template<typename F , typename SuggestedArgType >
using sycl::_V1::detail::lambda_arg_type = decltype(argument_helper< F, SuggestedArgType >(0))
 
using sycl::_V1::detail::string = std::string
 
using sycl::_V1::detail::string_view = std::string
 

Functions

template<typename RetType , typename Func , typename Arg >
static Arg sycl::_V1::detail::member_ptr_helper (RetType(Func::*)(Arg) const)
 
template<typename RetType , typename Func , typename Arg1 , typename Arg2 >
static Arg1 sycl::_V1::detail::member_ptr_helper (RetType(Func::*)(Arg1, Arg2) const)
 
template<typename F , typename SuggestedArgType >
SuggestedArgType sycl::_V1::detail::argument_helper (...)
 
device sycl::_V1::detail::getDeviceFromHandler (handler &CommandGroupHandlerRef)
 
bool sycl::_V1::detail::isDeviceGlobalUsedInKernel (const void *DeviceGlobalPtr)
 
void * sycl::_V1::detail::getValueFromDynamicParameter (ext::oneapi::experimental::detail::dynamic_parameter_base &DynamicParamBase)
 
template<int Dims, typename T >
std::enable_if_t< std::is_same_v< T, range< Dims > >||std::is_same_v< T, id< Dims > > > sycl::_V1::detail::checkValueRange (const T &V)
 
template<int Dims>
void sycl::_V1::detail::checkValueRange (const range< Dims > &R, const id< Dims > &O)
 
template<int Dims, typename T >
std::enable_if_t< std::is_same_v< T, nd_range< Dims > > > sycl::_V1::detail::checkValueRange (const T &V)
 
template<typename T >
static std::enable_if_t< std::is_unsigned_v< T >, bool > sycl::_V1::detail::multiply_with_overflow_check (T &dst, T x, T y)
 
template<int Dims>
bool sycl::_V1::detail::range_size_fits_in_size_t (const range< Dims > &r)
 

Variables

template<typename F , typename SuggestedArgType >
decltype(member_ptr_helper(&F::operator())) sycl::_V1::detail::argument_helper (int)
 

Macro Definition Documentation

◆ __SYCL_KERNEL_ATTR__

#define __SYCL_KERNEL_ATTR__

Definition at line 1543 of file handler.hpp.

◆ __SYCL_NONCONST_FUNCTOR__

#define __SYCL_NONCONST_FUNCTOR__

Definition at line 73 of file handler.hpp.

◆ _KERNELFUNCPARAM

#define _KERNELFUNCPARAM (   a)    _KERNELFUNCPARAMTYPE a

Definition at line 83 of file handler.hpp.

◆ _KERNELFUNCPARAMTYPE

#define _KERNELFUNCPARAMTYPE   KernelType

Definition at line 79 of file handler.hpp.