SWDEV-320901 - Added HIP_INIT_API_NO_RETURN

Change-Id: Ic79acc21f6a92fcb24527d4f121ae96b13192f75
This commit is contained in:
Sarbojit Sarkar
2022-01-31 11:33:18 +00:00
committed by Sarbojit Sarkar
parent a01b481e45
commit 3e2cc04da5
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -196,7 +196,7 @@ hipError_t hipCtxGetSharedMemConfig(hipSharedMemConfig* pConfig) {
}
hipError_t hipRuntimeGetVersion(int *runtimeVersion) {
HIP_INIT_API(hipRuntimeGetVersion, runtimeVersion);
HIP_INIT_API_NO_RETURN(hipRuntimeGetVersion, runtimeVersion);
if (!runtimeVersion) {
HIP_RETURN(hipErrorInvalidValue);
@@ -264,7 +264,7 @@ hipError_t hipCtxPushCurrent(hipCtx_t ctx) {
}
hipError_t hipDriverGetVersion(int* driverVersion) {
HIP_INIT_API(hipDriverGetVersion, driverVersion);
HIP_INIT_API_NO_RETURN(hipDriverGetVersion, driverVersion);
if (!driverVersion) {
HIP_RETURN(hipErrorInvalidValue);