Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime-light/allocator/allocator-state.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<size_t>(64 * 1024U * 1024U)};
inline constexpr auto DEFAULT_MIN_EXTRA_MEMORY_POOL_SIZE{static_cast<size_t>(1 * 1024U * 1024U)}; // 1mb

class AllocatorState final : private vk::not_copyable {
uint32_t m_libc_alloc_allowed{};
Expand Down
Loading