SWDEV-187253 - Print warning if launch_params > bounds

Change-Id: I138546bf816887576e797105f97ce37245911045
Tá an tiomantas seo le fáil i:
Maneesh Gupta
2021-03-24 22:27:59 -07:00
tuismitheoir 6e201739b6
tiomantas b2cb34f519
+2 -2
Féach ar an gComhad
@@ -253,9 +253,9 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f, uint32_t globalWorkSizeX,
}
// Make sure the launch params are not larger than if specified launch_bounds
// If it exceeds, then print a warning and continue for now
if (blockDimX * blockDimY * blockDimZ > kernel->getDeviceKernel(device)->workGroupInfo()->size_) {
LogPrintfError("%s", "Launch params are larger than launch bounds");
return hipErrorLaunchFailure;
LogPrintfWarning("%s", "Launch params are larger than launch bounds");
}