From 73d1dbf7320ff64f357821707dd5f35acc0122b3 Mon Sep 17 00:00:00 2001 From: zhuoli Date: Thu, 19 Jan 2023 17:44:13 +0800 Subject: [PATCH] Boost memory limit from 2g to 16g Signed-off-by: zhuoli Change-Id: I165cdaa7ef25b3292f8b864e6a69799e096082f5 --- es2panda/aot/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es2panda/aot/main.cpp b/es2panda/aot/main.cpp index e1ca0abdef..c57962acb5 100644 --- a/es2panda/aot/main.cpp +++ b/es2panda/aot/main.cpp @@ -32,7 +32,7 @@ class MemManager { public: explicit MemManager() { - constexpr auto COMPILER_SIZE = 2048_MB; + constexpr auto COMPILER_SIZE = 16384_MB; MemConfig::Initialize(0, 0, COMPILER_SIZE, 0); PoolManager::Initialize(PoolType::MMAP); -- Gitee