diff --git a/build.sbt b/build.sbt index b37f103..74cb0ef 100644 --- a/build.sbt +++ b/build.sbt @@ -115,7 +115,7 @@ commands += Command.custom((s: State) => Command.applyEffect(profParser(s))((lin def command(outDir: File): String = s"-prof jmh.extras.JFR:dir=${outDir.getAbsolutePath};flameGraphOpts=$flameGraphOpts;verbose=true'" } object async extends Profiler("async") { - val framebuf = 16777216 + val framebuf = 33554432 def command(outDir: File): String = s"-prof jmh.extras.Async:dir=${outDir.getAbsolutePath};flameGraphOpts=$flameGraphOpts;verbose=true;event=cpu;framebuf=$framebuf" // + ";simpleName=true" TODO add this after upgrading next sbt-jmh release } object perfNorm extends Profiler("perfNorm") {