File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 16
16
#include < CL/sycl/detail/os_util.hpp>
17
17
#include < CL/sycl/event.hpp>
18
18
#include < CL/sycl/id.hpp>
19
+ #include < CL/sycl/interop_handle.hpp>
19
20
#include < CL/sycl/kernel.hpp>
20
21
#include < CL/sycl/nd_item.hpp>
21
22
#include < CL/sycl/nd_range.hpp>
@@ -825,6 +826,15 @@ class __SYCL_EXPORT handler {
825
826
MCGType = detail::CG::CODEPLAY_HOST_TASK;
826
827
}
827
828
829
+
830
+ template <typename FuncT>
831
+ typename std::enable_if<
832
+ detail::check_fn_signature<typename std::remove_reference<FuncT>::type,
833
+ void (interop_handle)>::value>::type
834
+ codeplay_host_task (FuncT) {
835
+ throw runtime_error (" Not implemented" , PI_ERROR_UNKNOWN);
836
+ }
837
+
828
838
// / Defines and invokes a SYCL kernel function for the specified range and
829
839
// / offset.
830
840
// /
You can’t perform that action at this time.
0 commit comments