Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perf baseline 3.5.0, adapt Shakespeare bench to 2022.0.0 release #3278

Merged
merged 1 commit into from Nov 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -148,6 +148,7 @@ public boolean isDisposed() {
return BOUNDED_SERVICES.get(this) == SHUTDOWN;
}

@SuppressWarnings("deprecation")
@Override
public void start() {
for (;;) {
Expand Down
Expand Up @@ -50,7 +50,7 @@ public static void main(String[] args) throws Exception {

@Setup
public void localSetup() {
scheduler = Schedulers.newElastic("RcParallel");
scheduler = Schedulers.newBoundedElastic(Schedulers.DEFAULT_BOUNDED_ELASTIC_SIZE, Schedulers.DEFAULT_BOUNDED_ELASTIC_QUEUESIZE, "RcParallel");
}

@TearDown
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
@@ -1,8 +1,8 @@
[versions]
# Baselines, should be updated on every release
baseline-core-api = "3.5.0"
baselinePerfCore = "3.4.24"
baselinePerfExtra = "3.4.8"
baselinePerfCore = "3.5.0"
baselinePerfExtra = "3.5.0"

# Other shared versions
asciidoctor = "3.3.2"
Expand Down