Skip to content

Commit aa1e02b

Browse files
committed
TESTING: decrease estimator GC cost limit.
1 parent e156189 commit aa1e02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/AdaptiveCollectionPolicy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ final class AdaptiveCollectionPolicy extends AbstractCollectionPolicy {
105105
* When the GC cost of a generation is above this value, its estimator is ignored and sizes are
106106
* increased to avoid starving the mutator.
107107
*/
108-
private static final double ADAPTIVE_SIZE_COST_ESTIMATOR_GC_COST_LIMIT = 0.5;
108+
private static final double ADAPTIVE_SIZE_COST_ESTIMATOR_GC_COST_LIMIT = 0.4;
109109

110110
/* Constants derived from other constants. */
111111
private static final double THROUGHPUT_GOAL = 1.0 - 1.0 / (1.0 + GC_TIME_RATIO);

0 commit comments

Comments
 (0)