Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/source/detail/program_manager/program_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ void ProgramManager::addImages(pi_device_binaries DeviceBinary) {
}
// ... and initialize associated host_pipe information
{
std::lock_guard HostPipesGuard(m_HostPipesMutex);
std::lock_guard<std::mutex> HostPipesGuard(m_HostPipesMutex);
auto HostPipes = Img->getHostPipes();
for (const pi_device_binary_property &HostPipe : HostPipes) {
ByteArray HostPipeInfo = DeviceBinaryProperty(HostPipe).asByteArray();
Expand Down