mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
22 lines
363 B
C++
22 lines
363 B
C++
/*
|
|
* Copyright (C) 2023-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/indirect_heap/indirect_heap_type.h"
|
|
|
|
#include <cstddef>
|
|
|
|
namespace NEO {
|
|
namespace HeapSize {
|
|
|
|
size_t getDefaultHeapSize(IndirectHeapType heapType);
|
|
size_t getHeapSize(size_t defaultValue);
|
|
|
|
} // namespace HeapSize
|
|
} // namespace NEO
|