Adding Anyorder flag to HIP

Change-Id: Ie20931541b3febe23fa9ac36ebc0c90de75a5f0a
This commit is contained in:
Jatin Chaudhary
2020-07-21 06:31:13 -04:00
committed by Jatin Chaudhary
parent dd40abe96c
commit 1340b3f07f
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -288,6 +288,11 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f, uint32_t globalWorkSizeX,
profileNDRange = (startEvent != nullptr && stopEvent != nullptr);
// Flag set to 1 signifies that kernel can be launched in anyorder
if (flags & hipExtAnyOrderLaunch) {
params |= amd::NDRangeKernelCommand::AnyOrderLaunch;
}
amd::NDRangeKernelCommand* command = new amd::NDRangeKernelCommand(
*queue, waitList, *kernel, ndrange, sharedMemBytes,
params, gridId, numGrids, prevGridSum, allGridSum, firstDevice, profileNDRange);