2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2019-02-27 18:39:32 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-02-27 18:39:32 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
struct HeapInfo {
|
2019-10-28 02:48:26 +08:00
|
|
|
const void *pKernelHeap = nullptr;
|
|
|
|
const void *pGsh = nullptr;
|
|
|
|
const void *pDsh = nullptr;
|
|
|
|
const void *pSsh = nullptr;
|
2020-05-26 15:36:04 +08:00
|
|
|
|
|
|
|
uint32_t KernelHeapSize = 0U;
|
|
|
|
uint32_t GeneralStateHeapSize = 0U;
|
|
|
|
uint32_t DynamicStateHeapSize = 0U;
|
|
|
|
uint32_t SurfaceStateHeapSize = 0U;
|
|
|
|
uint32_t KernelUnpaddedSize = 0U;
|
2017-12-21 07:45:38 +08:00
|
|
|
};
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|