mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
Use KernelDescriptor instead of patchTokens stored in KernelInfo's patchInfo. Removed: SPatchMediaInterfaceDescriptorLoad, SPatchAllocateLocalSurface, SPatchMediaVFEState(slot 0), SPatchMediaVFEState(slot 1), SPatchInterfaceDescriptorData, SPatchSamplerStateArray, SPatchBindingTableState, SPatchDataParameterBuffer, SPatchDataParameterStream, SPatchThreadPayload, SPatchKernelAttributesInfo, SPatchAllocateStatelessPrivateSurface, SPatchAllocateSyncBuffer, SPatchAllocateStatelessConstantMemorySurfaceWithInitialization, SPatchAllocateStatelessGlobalMemorySurfaceWithInitialization, SPatchAllocateSystemThreadSurface. Related-To: NEO-4729 Signed-off-by: Krystian Chmielewski <krystian.chmielewski@intel.com>
39 lines
928 B
C++
39 lines
928 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/program/program_info.h"
|
|
|
|
#include "opencl/source/program/kernel_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
ProgramInfo::~ProgramInfo() {
|
|
for (auto &kernelInfo : kernelInfos) {
|
|
delete kernelInfo;
|
|
}
|
|
kernelInfos.clear();
|
|
}
|
|
|
|
size_t getMaxInlineSlmNeeded(const ProgramInfo &programInfo) {
|
|
uint32_t ret = 0U;
|
|
for (const auto &kernelInfo : programInfo.kernelInfos) {
|
|
ret = std::max(ret, kernelInfo->kernelDescriptor.kernelAttributes.slmInlineSize);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
bool requiresLocalMemoryWindowVA(const ProgramInfo &programInfo) {
|
|
for (const auto &kernelInfo : programInfo.kernelInfos) {
|
|
if (WorkloadInfo::undefinedOffset != kernelInfo->workloadInfo.localMemoryStatelessWindowStartAddressOffset) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|