From 0ca4040f5532bab91560015aa81cb095942f7843 Mon Sep 17 00:00:00 2001 From: Alexander Polyakov Date: Tue, 23 Dec 2025 21:19:26 +0300 Subject: [PATCH] [k2] reduce init instance allocator size --- runtime-light/state/instance-state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime-light/state/instance-state.h b/runtime-light/state/instance-state.h index 68473d69e7..cd855b1a5b 100644 --- a/runtime-light/state/instance-state.h +++ b/runtime-light/state/instance-state.h @@ -135,5 +135,5 @@ struct InstanceState final : vk::not_copyable { enum image_kind image_kind_ { image_kind::invalid }; enum instance_kind instance_kind_ { instance_kind::invalid }; - static constexpr auto INIT_INSTANCE_ALLOCATOR_SIZE = static_cast(256U * 1024U * 1024U); + static constexpr auto INIT_INSTANCE_ALLOCATOR_SIZE = static_cast(128U * 1024U * 1024U); };