mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 02:34:04 +08:00
22 lines
382 B
C
22 lines
382 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
struct KernelDescriptor;
|
||
|
|
|
||
|
|
namespace PatchTokenBinary {
|
||
|
|
struct KernelFromPatchtokens;
|
||
|
|
}
|
||
|
|
|
||
|
|
void populateKernelDescriptor(KernelDescriptor &dst, const PatchTokenBinary::KernelFromPatchtokens &src, uint32_t gpuPointerSizeInBytes);
|
||
|
|
|
||
|
|
} // namespace NEO
|