#include <CL/sycl/context.hpp>
#include <CL/sycl/detail/common.hpp>
#include <CL/sycl/device.hpp>
#include <CL/sycl/device_selector.hpp>
#include <CL/sycl/exception.hpp>
#include <CL/sycl/exception_list.hpp>
#include <CL/sycl/platform.hpp>
#include <CL/sycl/properties/all_properties.hpp>
#include <CL/sycl/stl.hpp>
#include <detail/backend_impl.hpp>
#include <detail/context_impl.hpp>
#include <algorithm>
#include <memory>
#include <utility>
#include <CL/sycl/info/context_traits.def>
#include <CL/sycl/detail/properties_traits.def>
Go to the source code of this file.
|
| cl |
| We provide new interfaces for matrix muliply in this patch:
|
|
| cl::sycl |
|
◆ __SYCL_PARAM_TRAITS_SPEC [1/3]
#define __SYCL_PARAM_TRAITS_SPEC |
( |
|
param_type | ) |
|
Value: template <> __SYCL_EXPORT bool context::has_property<param_type>() const { \
return impl->has_property<param_type>(); \
}
Definition at line 108 of file context.cpp.
◆ __SYCL_PARAM_TRAITS_SPEC [2/3]
#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 108 of file context.cpp.
◆ __SYCL_PARAM_TRAITS_SPEC [3/3]
#define __SYCL_PARAM_TRAITS_SPEC |
( |
|
param_type, |
|
|
|
param, |
|
|
|
ret_type |
|
) |
| |
Value: template <> \
__SYCL_EXPORT ret_type context::get_info<info::param_type::param>() const { \
return impl->get_info<info::param_type::param>(); \
}
Definition at line 108 of file context.cpp.