SWDEV-314982 - hipStreamGetCaptureInfo seq ID ptr check
Change-Id: I84a84121d2064182f0daea22578f0fa5f94f850c
Этот коммит содержится в:
коммит произвёл
Ajay GunaShekar
родитель
2ef41ff5be
Коммит
8c103bb898
@@ -1261,8 +1261,8 @@ hipError_t hipStreamGetCaptureInfo(hipStream_t stream, hipStreamCaptureStatus* p
|
||||
}
|
||||
hip::Stream* s = reinterpret_cast<hip::Stream*>(stream);
|
||||
*pCaptureStatus = s->GetCaptureStatus();
|
||||
if (*pCaptureStatus == hipStreamCaptureStatusActive) {
|
||||
pId = reinterpret_cast<unsigned long long*>(s->GetCaptureID());
|
||||
if (*pCaptureStatus == hipStreamCaptureStatusActive && pId != nullptr) {
|
||||
*pId = s->GetCaptureID();
|
||||
}
|
||||
HIP_RETURN(hipSuccess);
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user