mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
16 lines
231 B
C
16 lines
231 B
C
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct DynamicKernelInfo {
|
|
char *pCrossThreadData;
|
|
size_t crossThreadDataSize;
|
|
|
|
char *pSsh;
|
|
size_t sshSize;
|
|
}; |