-
The attached code is from a project including several optimized version of it. This is all JMH setup. Graal CE RC14 runs it noticeably slower than without Graal and EE RC14 runs it really a lot faster…
-
Some JMH benchmarks should be written and executed comparing the performance of this implementation of Future to CompletableFuture from Java 8, Future from other ExecutorService implementations, and p…
-
idea ultimate 14.1.2 + scala plugin 1.4.15 + jmh plugin 1.0.1
I have an sbt project opened in IDEA. When I run one benchmark method or all methods in a class I get this error:
```
Exception in threa…
-
Sadly there's no test suite for JSONiq, so we'd have to create tests on our own using synthetic JSON input and custom queries.
-
On the Java side, we can use JMH's `Runner` to define a `main` method that you can call. This makes it very easy to:
- Define per-benchmark settings (`forks`, `jvmArgs`, etc.) and have these settin…
hbf updated
10 months ago
-
**Is your feature request related to a problem? Please describe.**
There are multiple implementations of the `SpanProcessor` interface. I'd like to compare their performance to pick the one that best…
-
Thanks for a nice plugin!
At the moment, `./gradlew jmh` will run all JMH benchmarks in a project. This is often useful, but sometimes you might want to selectively run just one or a few benchmarks…
-
We already have some JMH based benchmarks but we never collect any values and have no infrastructure for reproducible benchmarks.
-
Gradle Task:
```
shadowJar {
archiveName = 'benchmarks.jar'
classifier = 'benchmarks'
manifest {
attributes 'Main-Class': 'org.openjdk.jmh.Main'
}
outputs.upToDateWhen { false }
…
-
I'm trying to benchmark a class from my project. My project is part of an IntelliJ plugin, so it needs the whole IntelliJ framework on the classpath even though it needs only a couple of classes from …