Skip to content
Open
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
9 changes: 9 additions & 0 deletions projects/rocdbgapi/src/os_driver_kmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1323,6 +1323,15 @@ kmd_driver_t::check_version () const
}
}

/* Multi-GPU configurations are not supported on Windows. */
if (m_agents.size () > 1)
{
warning ("GPU debugging on Windows supports only a single AMD GPU "
"debug agent; %zu agents were detected. GPU debugging will "

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reads odd with the "debug agent; break". I'm not sure if that's was intended.

"not be available.", m_agents.size ());
return AMD_DBGAPI_STATUS_ERROR_RESTRICTION;
}

return AMD_DBGAPI_STATUS_SUCCESS;
}

Expand Down
Loading