performance: increase heap size to 4MB

Related-To: NEO-16348

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2025-10-08 15:03:47 +00:00
committed by Compute-Runtime-Automation
parent d6ea88f266
commit f41bb3517a
31 changed files with 216 additions and 155 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023 Intel Corporation
* Copyright (C) 2023-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -12,7 +12,7 @@
namespace NEO {
namespace HeapSize {
size_t getDefaultHeapSize(size_t defaultValue) {
size_t getHeapSize(size_t defaultValue) {
auto defaultSize = defaultValue;
if (debugManager.flags.ForceDefaultHeapSize.get() != -1) {
defaultSize = debugManager.flags.ForceDefaultHeapSize.get() * MemoryConstants::kiloByte;