Skip to content

Commit c417a10

Browse files
arthaudfacebook-github-bot
authored andcommitted
Decrease the default shared memory size to 8GiB
Summary: Most likely 16GiB is not necessary for most users. Others can use the `"shared_memory": {"heap_size": <value>}` option in their `.pyre_configuration`. Reviewed By: gbleaney Differential Revision: D28546488 fbshipit-source-id: 3b9d06066928b6348439b219eb83d1aa2291c1e3
1 parent 6bac861 commit c417a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/configuration.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let default_python_minor_version = 10
1414

1515
let default_python_micro_version = 10
1616

17-
let default_shared_memory_heap_size = 16 * 1024 * 1024 * 1024 (* 16 GiB *)
17+
let default_shared_memory_heap_size = 8 * 1024 * 1024 * 1024 (* 8 GiB *)
1818

1919
let default_shared_memory_dependency_table_power = 27
2020

0 commit comments

Comments
 (0)