Files
compute-runtime/runtime/program/kernel_info_from_patchtokens.h
Jaroslaw Chodor f057712fa7 Program refactor
* decouple program_info
* move global allocations relocation to linker
* remove obsolete tests
* initial cleanup to kernel_info kernelInfo
* unified patchtoken validation

Change-Id: I0567cd6d607b4f3cf44e6caf33681f6210760f76
2020-01-25 10:56:30 +01:00

25 lines
485 B
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace NEO {
struct DeviceInfoKernelPayloadConstants;
struct KernelInfo;
namespace PatchTokenBinary {
struct KernelFromPatchtokens;
}
void populateKernelInfo(KernelInfo &dst, const PatchTokenBinary::KernelFromPatchtokens &src, uint32_t gpuPointerSizeInBytes,
const DeviceInfoKernelPayloadConstants &constant);
} // namespace NEO