SWDEV-271274 - Changing DevLogPrintf to LogPrintf for cases where error condition is being returned

Change-Id: I153d071f7859e9412ea0c69f53c53d190453d73d
This commit is contained in:
cjatin
2021-02-17 23:54:39 +05:30
committed by Jatin Chaudhary
parent abff21c4fc
commit 23f33d5f20
9 changed files with 67 additions and 65 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ const char* hipKernelNameRefByPtr(const void* hostFunction, hipStream_t stream)
}
int deviceId = hipGetStreamDeviceId(stream);
if (deviceId == -1) {
DevLogPrintfError("Wrong Device Id: %d \n", deviceId);
LogPrintfError("Wrong Device Id: %d \n", deviceId);
return NULL;
}
hipFunction_t func = nullptr;