SWDEV-388278 - Fix return HIP_RETURN(x)

Change-Id: I940ee3660a2427eade8690a9318966fb04a1fbe8
This commit is contained in:
Ioannis Assiouras
2023-03-13 13:32:55 +00:00
parent ae631aaa32
commit e6520ddf8a
3 changed files with 12 additions and 9 deletions
+5 -5
View File
@@ -2249,7 +2249,7 @@ hipError_t hipDeviceGetGraphMemAttribute(int device, hipGraphMemAttributeType at
default:
break;
}
return HIP_RETURN(result);
HIP_RETURN(result);
}
// ================================================================================================
@@ -2274,7 +2274,7 @@ hipError_t hipDeviceSetGraphMemAttribute(int device, hipGraphMemAttributeType at
default:
break;
}
return HIP_RETURN(result);
HIP_RETURN(result);
}
// ================================================================================================
@@ -2284,7 +2284,7 @@ hipError_t hipDeviceGraphMemTrim(int device) {
HIP_RETURN(hipErrorInvalidDevice);
}
g_devices[device]->GetGraphMemoryPool()->TrimTo(0);
return HIP_RETURN(hipSuccess);
HIP_RETURN(hipSuccess);
}
// ================================================================================================
@@ -2417,7 +2417,7 @@ hipError_t hipGraphNodeSetEnabled(hipGraphExec_t hGraphExec, hipGraphNode_t hNod
}
if (!(hNode->GetType() == hipGraphNodeTypeKernel || hNode->GetType() == hipGraphNodeTypeMemcpy ||
hNode->GetType() == hipGraphNodeTypeMemset)) {
return HIP_RETURN(hipErrorInvalidValue);
HIP_RETURN(hipErrorInvalidValue);
}
clonedNode->SetEnabled(isEnabled);
HIP_RETURN(hipSuccess);
@@ -2436,7 +2436,7 @@ hipError_t hipGraphNodeGetEnabled(hipGraphExec_t hGraphExec, hipGraphNode_t hNod
}
if (!(hNode->GetType() == hipGraphNodeTypeKernel || hNode->GetType() == hipGraphNodeTypeMemcpy ||
hNode->GetType() == hipGraphNodeTypeMemset)) {
return HIP_RETURN(hipErrorInvalidValue);
HIP_RETURN(hipErrorInvalidValue);
}
*isEnabled = clonedNode->GetEnabled();
HIP_RETURN(hipSuccess);