Files
compute-runtime/shared/source/indirect_heap/heap_size.h
Mateusz Jablonski 6849d33326 refactor: remove redundant definitions KB/MB/GB
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2023-12-05 08:55:18 +01:00

20 lines
350 B
C++

/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/constants.h"
namespace NEO {
namespace HeapSize {
inline constexpr size_t defaultHeapSize = 64 * MemoryConstants::kiloByte;
size_t getDefaultHeapSize(size_t defaultValue);
} // namespace HeapSize
} // namespace NEO