Revert "SWDEV-359287 - 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 1b05247a03.

Reason for revert: Waiting for staging results before finally merging it.

Change-Id: Iaabb510325f50147f368108e98531291217627c0


[ROCm/clr commit: 77be355fd9]
This commit is contained in:
Jaydeepkumar Patel
2024-01-17 06:16:54 -05:00
committed by Maneesh Gupta
parent 3b42f3c995
commit 5b6349bb60
3 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -575,7 +575,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;