DPC++ Runtime
Runtime libraries for oneAPI DPC++
context.cpp File Reference
#include <detail/backend_impl.hpp>
#include <detail/context_impl.hpp>
#include <sycl/context.hpp>
#include <sycl/detail/common.hpp>
#include <sycl/device.hpp>
#include <sycl/device_selector.hpp>
#include <sycl/exception.hpp>
#include <sycl/exception_list.hpp>
#include <sycl/platform.hpp>
#include <sycl/properties/all_properties.hpp>
#include <algorithm>
#include <memory>
#include <utility>
#include <sycl/info/context_traits.def>
#include <sycl/info/sycl_backend_traits.def>
#include <sycl/detail/properties_traits.def>
Include dependency graph for context.cpp:

Go to the source code of this file.

Namespaces

 sycl
 
 sycl::_V1
 

Macros

#define __SYCL_PARAM_TRAITS_SPEC(DescType, Desc, ReturnT, PiCode)
 
#define __SYCL_PARAM_TRAITS_SPEC(DescType, Desc, ReturnT, Picode)
 
#define __SYCL_PARAM_TRAITS_SPEC(param_type)
 
#define __SYCL_PARAM_TRAITS_SPEC(param_type)
 

Macro Definition Documentation

◆ __SYCL_PARAM_TRAITS_SPEC [1/4]

#define __SYCL_PARAM_TRAITS_SPEC (   DescType,
  Desc,
  ReturnT,
  PiCode 
)
Value:
template __SYCL_EXPORT ReturnT context::get_info<info::DescType::Desc>() \
const;

Definition at line 129 of file context.cpp.

◆ __SYCL_PARAM_TRAITS_SPEC [2/4]

#define __SYCL_PARAM_TRAITS_SPEC (   DescType,
  Desc,
  ReturnT,
  Picode 
)
Value:
template __SYCL_EXPORT ReturnT \
context::get_backend_info<info::DescType::Desc>() const;

Definition at line 129 of file context.cpp.

◆ __SYCL_PARAM_TRAITS_SPEC [3/4]

#define __SYCL_PARAM_TRAITS_SPEC (   param_type)
Value:
template <> \
__SYCL_EXPORT bool context::has_property<param_type>() const noexcept { \
return impl->has_property<param_type>(); \
}
_Abi const simd< _Tp, _Abi > & noexcept
Definition: simd.hpp:1324

Definition at line 129 of file context.cpp.

◆ __SYCL_PARAM_TRAITS_SPEC [4/4]

#define __SYCL_PARAM_TRAITS_SPEC (   param_type)
Value:
template <> \
__SYCL_EXPORT param_type context::get_property<param_type>() const { \
return impl->get_property<param_type>(); \
}

Definition at line 129 of file context.cpp.