Skip to content

Commit 52f887b

Browse files
committed
More stabilization
1 parent 4af9d53 commit 52f887b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/performance_score_director.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ jobs:
7070
working-directory: ./timefold-solver-benchmarks
7171
shell: bash
7272
run: |
73-
echo "forks=15" > scoredirector-benchmark.properties
73+
echo "forks=10" > scoredirector-benchmark.properties
7474
echo "warmup_iterations=5" >> scoredirector-benchmark.properties
75-
echo "measurement_iterations=10" >> scoredirector-benchmark.properties
75+
echo "measurement_iterations=15" >> scoredirector-benchmark.properties
7676
echo "score_director_type=cs" >> scoredirector-benchmark.properties
7777
echo "example=${{ matrix.example }}" >> scoredirector-benchmark.properties
7878
cat scoredirector-benchmark.properties

src/main/java/ai/timefold/solver/benchmarks/micro/common/AbstractMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public ChainedOptionsBuilder getBaseJmhConfig(C configuration) {
178178
.forks(configuration.getForkCount())
179179
.warmupIterations(configuration.getWarmupIterations())
180180
.measurementIterations(configuration.getMeasurementIterations())
181-
.jvmArgs("-XX:+UseZGC", "-Xmx4g") // Stable, predictable GC pause times.
181+
.jvmArgs("-XX:+UseParallelGC", "-Xmx2g") // Stable, predictable GC pause times.
182182
.result(resultsDirectory.resolve("results.json").toAbsolutePath().toString())
183183
.resultFormat(ResultFormatType.JSON)
184184
.shouldDoGC(true);

0 commit comments

Comments
 (0)