SWDEV-446992 - Request can be for bytes OR dptr OR both.

Change-Id: Ib479c744b90125b74d99cbf18b7f4b8cf765bf1c
This commit is contained in:
Jaydeep Patel
2024-02-29 09:06:03 +00:00
committed by Jaydeepkumar Patel
parent 5cbd74b554
commit 09328f45b3
3 changed files with 17 additions and 11 deletions
-4
View File
@@ -92,10 +92,6 @@ hipError_t hipModuleGetGlobal(hipDeviceptr_t* dptr, size_t* bytes, hipModule_t h
const char* name) {
HIP_INIT_API(hipModuleGetGlobal, dptr, bytes, hmod, name);
if (dptr == nullptr || bytes == nullptr) {
// If either is nullptr, ignore it
HIP_RETURN(hipSuccess);
}
if ((dptr == nullptr && bytes == nullptr) || name == nullptr || strlen(name) == 0) {
HIP_RETURN(hipErrorInvalidValue);
}