mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
21 lines
313 B
C
21 lines
313 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2019 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
struct KernelInfo;
|
||
|
|
|
||
|
|
namespace PatchTokenBinary {
|
||
|
|
struct KernelFromPatchtokens;
|
||
|
|
}
|
||
|
|
|
||
|
|
void populateKernelInfo(KernelInfo &dst, const PatchTokenBinary::KernelFromPatchtokens &src);
|
||
|
|
|
||
|
|
} // namespace NEO
|