2020-01-11 18:25:26 +01:00
|
|
|
/*
|
2023-01-02 16:19:30 +00:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-01-11 18:25:26 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/program/program_info.h"
|
2020-01-11 18:25:26 +01:00
|
|
|
|
2023-04-25 15:12:25 +00:00
|
|
|
#include "shared/source/compiler_interface/compiler_interface.h"
|
2023-01-26 10:26:52 +00:00
|
|
|
#include "shared/source/compiler_interface/compiler_options.h"
|
2023-01-02 16:19:30 +00:00
|
|
|
#include "shared/source/compiler_interface/external_functions.h"
|
2023-01-03 13:25:09 +00:00
|
|
|
#include "shared/source/compiler_interface/linker.h"
|
2022-09-27 14:19:01 +00:00
|
|
|
#include "shared/source/device/device.h"
|
2021-09-29 19:10:53 +00:00
|
|
|
#include "shared/source/program/kernel_info.h"
|
2020-01-11 18:25:26 +01:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
ProgramInfo::~ProgramInfo() {
|
|
|
|
|
for (auto &kernelInfo : kernelInfos) {
|
|
|
|
|
delete kernelInfo;
|
|
|
|
|
}
|
|
|
|
|
kernelInfos.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-02 16:19:30 +00:00
|
|
|
void ProgramInfo::prepareLinkerInputStorage() {
|
|
|
|
|
if (this->linkerInput == nullptr) {
|
|
|
|
|
this->linkerInput = std::make_unique<LinkerInput>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-25 19:18:48 +01:00
|
|
|
size_t getMaxInlineSlmNeeded(const ProgramInfo &programInfo) {
|
|
|
|
|
uint32_t ret = 0U;
|
|
|
|
|
for (const auto &kernelInfo : programInfo.kernelInfos) {
|
Remove PatchTokens from KernelInfo
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>
2021-03-04 10:14:23 +01:00
|
|
|
ret = std::max(ret, kernelInfo->kernelDescriptor.kernelAttributes.slmInlineSize);
|
2020-01-25 19:18:48 +01:00
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool requiresLocalMemoryWindowVA(const ProgramInfo &programInfo) {
|
|
|
|
|
for (const auto &kernelInfo : programInfo.kernelInfos) {
|
2021-03-29 12:34:25 +02:00
|
|
|
if (isValidOffset(kernelInfo->kernelDescriptor.payloadMappings.implicitArgs.localMemoryStatelessWindowStartAddres)) {
|
2020-01-25 19:18:48 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-21 14:09:51 +00:00
|
|
|
bool isRebuiltToPatchtokensRequired(Device *neoDevice, ArrayRef<const uint8_t> archive, std::string &optionsString, bool isBuiltin, bool isVmeUsed) {
|
2022-09-27 14:19:01 +00:00
|
|
|
if (isBuiltin) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-12-13 16:09:52 +00:00
|
|
|
auto isZebinFormat = NEO::isDeviceBinaryFormat<NEO::DeviceBinaryFormat::zebin>(archive);
|
2023-08-04 09:19:46 +00:00
|
|
|
if (isVmeUsed && isZebinFormat) {
|
2023-04-25 15:12:25 +00:00
|
|
|
return neoDevice->getCompilerInterface()->disableZebin(optionsString, optionsString);
|
2022-09-27 14:19:01 +00:00
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-11 18:25:26 +01:00
|
|
|
} // namespace NEO
|