We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23f1d3a commit af6ca57Copy full SHA for af6ca57
sycl/source/detail/graph_impl.hpp
@@ -242,6 +242,10 @@ class node_impl : public std::enable_shared_from_this<node_impl> {
242
return createCGCopy<sycl::detail::CGFillUSM>();
243
case sycl::detail::CGType::PrefetchUSM:
244
return createCGCopy<sycl::detail::CGPrefetchUSM>();
245
+ case sycl::detail::CGType::PrefetchUSMExpD2H:
246
+ throw sycl::exception(
247
+ sycl::make_error_code(errc::feature_not_supported),
248
+ "Prefetch from device to host is currently not supported by SYCL Graph extension.");
249
case sycl::detail::CGType::AdviseUSM:
250
return createCGCopy<sycl::detail::CGAdviseUSM>();
251
case sycl::detail::CGType::Copy2DUSM:
0 commit comments