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 867c6da commit ff512a6Copy full SHA for ff512a6
sycl/source/detail/pipes.cpp
@@ -22,9 +22,9 @@ namespace intel {
22
namespace experimental {
23
__SYCL_EXPORT sycl::detail::string
24
pipe_base::get_pipe_name_impl(const void *HostPipePtr) {
25
- return {sycl::_V1::detail::ProgramManager::getInstance()
+ return {std::string_view{sycl::_V1::detail::ProgramManager::getInstance()
26
.getHostPipeEntry(HostPipePtr)
27
- ->MUniqueId};
+ ->MUniqueId}};
28
}
29
30
__SYCL_EXPORT bool pipe_base::wait_non_blocking(const event &E) {
0 commit comments