Skip to content

Commit 292f16d

Browse files
Remove handling of DATA_PARAMETER_LOCAL_ID_BUFFER
Related-To: NEO-5081, IGC-4710 Signed-off-by: Mateusz Jablonski <[email protected]>
1 parent b6d3b4c commit 292f16d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

shared/source/device_binary_format/patchtokens_decoder.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,6 @@ inline void decodeKernelDataParameterToken(const SPatchDataParameterBuffer *toke
303303
case DATA_PARAMETER_EXECUTION_MASK:
304304
case DATA_PARAMETER_VME_IMAGE_TYPE:
305305
case DATA_PARAMETER_VME_MB_SKIP_BLOCK_TYPE:
306-
case DATA_PARAMETER_LOCAL_ID_BUFFER:
307306
// ignored intentionally
308307
break;
309308
}

shared/test/unit_test/device_binary_format/patchtokens_dumper_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ TEST(PatchTokenDumper, GivenAnyTokenThenDumpingIsHandled) {
20942094
auto kernelDataParamToken = static_cast<iOpenCL::SPatchDataParameterBuffer *>(kernelToken);
20952095
*kernelDataParamToken = PatchTokensTestData::initDataParameterBufferToken(iOpenCL::DATA_PARAMETER_BUFFER_OFFSET);
20962096
kernelDataParamToken->Size = maxTokenSize;
2097-
std::unordered_set<int> dataParamTokensPasslist{6, 7, 17, 19, 36, 37, 39, 40, 41, iOpenCL::DATA_PARAMETER_LOCAL_ID_BUFFER};
2097+
std::unordered_set<int> dataParamTokensPasslist{6, 7, 17, 19, 36, 37, 39, 40, 41};
20982098
for (int i = 0; i < iOpenCL::NUM_DATA_PARAMETER_TOKENS; ++i) {
20992099
if (dataParamTokensPasslist.count(i) != 0) {
21002100
continue;

0 commit comments

Comments
 (0)