SWDEV-446298 - Adding error code to the logs on p2p hsa api failure.

Change-Id: Ic41b1ad1b64cca0e31986337a83a5146d52a7328
Этот коммит содержится в:
kjayapra-amd
2024-02-22 11:16:33 -05:00
коммит произвёл Karthik Jayaprakash
родитель 481912a1fd
Коммит 2b8634bada
+2 -2
Просмотреть файл
@@ -2275,7 +2275,7 @@ bool Device::deviceAllowAccess(void* ptr) const {
hsa_status_t stat = hsa_amd_agents_allow_access(p2pAgents().size(),
p2pAgents().data(), nullptr, ptr);
if (stat != HSA_STATUS_SUCCESS) {
LogError("Allow p2p access failed - hsa_amd_agents_allow_access");
LogPrintfError("Allow p2p access failed - hsa_amd_agents_allow_access with err %d", stat);
return false;
}
}
@@ -2291,7 +2291,7 @@ bool Device::allowPeerAccess(device::Memory* memory) const {
hsa_agent_t agent = getBackendDevice();
hsa_status_t stat = hsa_amd_agents_allow_access(1, &agent, nullptr, ptr);
if (stat != HSA_STATUS_SUCCESS) {
LogError("Allow p2p access failed - hsa_amd_agents_allow_access");
LogPrintfError("Allow p2p access failed - hsa_amd_agents_allow_access with err: %d", stat);
return false;
}
}