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

Change-Id: Ic41b1ad1b64cca0e31986337a83a5146d52a7328


[ROCm/clr commit: 2b8634bada]
Cette révision appartient à :
kjayapra-amd
2024-02-22 11:16:33 -05:00
révisé par Karthik Jayaprakash
Parent 565f915ebe
révision ed9c629ad6
+2 -2
Voir le fichier
@@ -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;
}
}