kotlinx-benchmark
kotlinx-benchmark copied to clipboard
Kotlin multiplatform benchmarking toolkit
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...
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" ```
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...
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....