kotlinx-benchmark icon indicating copy to clipboard operation
kotlinx-benchmark copied to clipboard

Kotlin multiplatform benchmarking toolkit

Results 115 kotlinx-benchmark issues
Sort by recently updated
recently updated
newest added
trafficstars

Without being able to specify level iteration, tests are really clunky to configure. For example say I have a class: ```kotlin class Benchmark { val stack = stack() @Setup fun...

enhancement

When you have many benchmarks in a run, it could be difficult to analyze the console output. Also, when the console output is gone, you only have the json reports...

How can I run specific benchmark class or function? I am looking for something like ```shell ./gradlew benchmark -Pbenchmarks="*Day1Benchmark*substringSolution" ```

enhancement

In the next snippet the code I want to benchmark is called only on the first benchmark iteration. How can I make it to be called on each iteration on...

enhancement

Currently, JVM's Jar task responsible for generating executable benchmarks jar generates a brand new manifest that includes only a main-class attribute. Depending on shaded libraries, that might be an issue....

enhancement