You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SYCL runtime may in places benefit from being able to define
"service kernels" to use behind-the-scenes work on devices. These
kernels may use the same interface as other SYCL kernels, but as such
will be handled no different than user-defined kernels.
These changes makes a distinction between service kernels and
user-defined kernels by placing service kernels in a common namespace
(`cl::sycl::detail::__sycl_service_kernel__`). The program manager will
not grant unique kernel IDs to service kernels. This prevents service
kernels from being visible to the user through kernel_bundle related
interfaces.
Consequently the runtime may create device images that do not contain
any kernel IDs. As such, `sycl::has_kernel_bundle` will now discount
any device images that have no kernel IDs.
Signed-off-by: Steffen Larsen <steffen.larsen@intel.com>
0 commit comments