updated LOG_LEVEL prints to print pid and tid

Change-Id: I8a9212b26bb7e312408a222823efcfd00344094b
This commit is contained in:
Payam
2020-04-06 12:17:00 -04:00
committed by Payam Ghafari
parent 5fe91ccb1b
commit 8c26e0b3b6
2 changed files with 13 additions and 4 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ hipError_t ihipMalloc(void** ptr, size_t sizeBytes, unsigned int flags)
if (*ptr == nullptr) {
return hipErrorOutOfMemory;
}
ClPrint(amd::LOG_INFO, amd::LOG_API, "ihipMalloc ptr=0x%zx", *ptr);
ClPrint(amd::LOG_INFO, amd::LOG_API, "%-5d: [%zx] ihipMalloc ptr=0x%zx", getpid(),std::this_thread::get_id(), *ptr);
return hipSuccess;
}