Skip to content

Commit

Permalink
change: adjust thread count allocation
Browse files Browse the repository at this point in the history
Cherry-picked from a689b15
  • Loading branch information
ishland committed Nov 17, 2024
1 parent 321a61a commit 696b2a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public class ModuleEntryPoint {
if( is_windows,
(cpus / 1.6 - 2),
(cpus / 1.2 - 2)
),
) - if(is_client, 2, 0),
if( is_j9vm,
( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.4 ),
( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 0.6 )
)
) - if(is_client, 2, 0)
)
)
\040""";

Expand Down

0 comments on commit 696b2a4

Please sign in to comment.