#include <CL/sycl/program.hpp>
#include <CL/sycl/properties/all_properties.hpp>
#include <CL/sycl/property_list.hpp>
#include <detail/backend_impl.hpp>
#include <detail/program_impl.hpp>
#include <vector>
#include <CL/sycl/info/program_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 program::has_property<param_type>() const { \
return impl->has_property<param_type>(); \
}
Definition at line 126 of file program.cpp.
◆ __SYCL_PARAM_TRAITS_SPEC [2/3]
#define __SYCL_PARAM_TRAITS_SPEC |
( |
|
param_type | ) |
|
Value: template <> \
__SYCL_EXPORT param_type program::get_property<param_type>() const { \
return impl->get_property<param_type>(); \
}
Definition at line 126 of file program.cpp.
◆ __SYCL_PARAM_TRAITS_SPEC [3/3]
#define __SYCL_PARAM_TRAITS_SPEC |
( |
|
param_type, |
|
|
|
param, |
|
|
|
ret_type |
|
) |
| |
Value: template __SYCL_EXPORT ret_type program::get_info<info::param_type::param>() \
const;
Definition at line 126 of file program.cpp.