All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.junitbenchmarks.mysql.method-chart-results.sql Maven / Gradle / Ivy

Go to download

A framework for writing performance micro-benchmarks using JUnit4 annotations, forked from https://github.com/carrotsearch/junit-benchmarks.

There is a newer version: 0.7.4-scijava
Show newest version

SELECT 
  NAME AS "method",
  ROUND(ROUND_AVG, 2) AS "Average time [s]", 
  ROUND(ROUND_STDDEV, 2) AS "StdDev",
  ROUND(GC_TIME, 2) AS "GC time [s]",
  ROUND(GC_AVG, 2) AS "GC average [s]",
  ROUND(GC_STDDEV, 2) AS "StdDev",
  GC_INVOCATIONS AS "GC calls",
  BENCHMARK_ROUNDS AS "benchmark rounds",
  WARMUP_ROUNDS AS "warmup rounds",
  ROUND(TIME_BENCHMARK, 2) AS "Total benchmark time",
  ROUND(TIME_WARMUP, 2) AS "Total warmup time"
FROM TESTS T, RUNS R
WHERE R.ID = ?
  AND T.RUN_ID = R.ID
  AND CLASSNAME = ?




© 2015 - 2025 Weber Informatics LLC | Privacy Policy