Skip to content

Commit

Permalink
Make benchmarks report avg time only
Browse files Browse the repository at this point in the history
  • Loading branch information
alancai98 committed Mar 5, 2024
1 parent f59e60b commit b39c120
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.partiql.lang.planner.GlobalResolutionResult
import org.partiql.lang.syntax.PartiQLParserBuilder
import java.util.concurrent.TimeUnit

@BenchmarkMode(Mode.All)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
open class PartiQLCompilerPipelineAsyncBenchmark {
companion object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import org.partiql.lang.planner.GlobalResolutionResult
import org.partiql.lang.syntax.PartiQLParserBuilder
import java.util.concurrent.TimeUnit

@BenchmarkMode(Mode.All)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
open class PartiQLCompilerPipelineBenchmark {
companion object {
Expand Down

0 comments on commit b39c120

Please sign in to comment.