Revert "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."

This reverts commit 2c9c58e7bb.

Change-Id: I077135a726320eb109888f0e7442120dc852ad3e
This commit is contained in:
Jaydeep Patel
2023-07-05 04:40:54 +00:00
parent 5a68556c9b
commit 90f53925a3
3 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -570,7 +570,7 @@ static amd_comgr_status_t populateKernelMetaV3(const amd_comgr_metadata_node_t k
kernel->SetWGPMode(buf.compare("true") == 0);
break;
case KernelField::UniformWrokGroupSize:
kernel->setUniformWorkGroupSize(buf.compare("1") == 0);
kernel->setUniformWorkGroupSize(buf.compare("true") == 0);
break;
default:
return AMD_COMGR_STATUS_ERROR;