mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 15:03:02 +08:00
* decouple program_info * move global allocations relocation to linker * remove obsolete tests * initial cleanup to kernel_info kernelInfo * unified patchtoken validation Change-Id: I0567cd6d607b4f3cf44e6caf33681f6210760f76
25 lines
485 B
C++
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
|