SWDEV-403995 - uniform_work_group_size is interger type is 1 for true and 0 for false. Lighting kernel's init sets uniform work group flag and hence not need to set it from options.

Change-Id: Ife45c1e3ccef03d16d7e07c3e0714fd8fd388fd3
This commit is contained in:
Jaydeep Patel
2023-06-05 14:42:14 +00:00
committed by Jaydeepkumar Patel
parent 17c052ca9a
commit 2c9c58e7bb
3 changed files with 7 additions and 4 deletions
+3 -2
View File
@@ -748,8 +748,9 @@ bool LightningProgram::createKernels(void* binary, size_t binSize, bool useUnifo
return false;
}
kernels()[kernelName] = kernel;
kernel->setUniformWorkGroupSize(useUniformWorkGroupSize);
if (codeObjectVer() < 5) {
kernel->setUniformWorkGroupSize(useUniformWorkGroupSize);
}
}
executable_ = loader_->CreateExecutable(HSA_PROFILE_FULL, nullptr);