SWDEV-465220 - Validate stream on which Kernel is planned to be launched.

Change-Id: I34c679bd888c275584c11ad3e8346d4d542976f9
This commit is contained in:
Jaydeep Patel
2024-06-03 11:17:51 +00:00
committed by Jaydeepkumar Patel
parent d954eb64db
commit b0047d690a
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -606,6 +606,9 @@ hipError_t hipOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(int* numBlocks,
hipError_t ihipLaunchKernel(const void* hostFunction, dim3 gridDim, dim3 blockDim, void** args,
size_t sharedMemBytes, hipStream_t stream, hipEvent_t startEvent,
hipEvent_t stopEvent, int flags) {
if (!hip::isValid(stream)) {
return hipErrorInvalidValue;
}
hipFunction_t func = nullptr;
int deviceId = hip::Stream::DeviceId(stream);
hipError_t hip_error = PlatformState::instance().getStatFunc(&func, hostFunction, deviceId);