From a8409b6a4959bf6efd86e7f5f094488cd3b32155 Mon Sep 17 00:00:00 2001
From: Petr Shumilov
Date: Tue, 21 Apr 2026 20:42:28 +0300
Subject: [PATCH] Decrease default min extra memory size
Signed-off-by: Petr Shumilov
---
runtime-light/allocator/allocator-state.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/runtime-light/allocator/allocator-state.h b/runtime-light/allocator/allocator-state.h
index 317cc66391..514465ae39 100644
--- a/runtime-light/allocator/allocator-state.h
+++ b/runtime-light/allocator/allocator-state.h
@@ -11,7 +11,7 @@
#include "runtime-common/core/allocator/runtime-allocator.h"
#include "runtime-light/stdlib/diagnostics/logs.h"
-inline constexpr auto DEFAULT_MIN_EXTRA_MEMORY_POOL_SIZE{static_cast(64 * 1024U * 1024U)};
+inline constexpr auto DEFAULT_MIN_EXTRA_MEMORY_POOL_SIZE{static_cast(1 * 1024U * 1024U)}; // 1mb
class AllocatorState final : private vk::not_copyable {
uint32_t m_libc_alloc_allowed{};