Skip to content

Instantly share code, notes, and snippets.

@fernandezpablo85
Last active December 15, 2015 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandezpablo85/5293930 to your computer and use it in GitHub Desktop.
Save fernandezpablo85/5293930 to your computer and use it in GitHub Desktop.
useful measure / benchmark functions
package org.example
import java.util.concurrent.TimeUnit
import java.util.concurrent.TimeUnit.{NANOSECONDS => Nanos, MILLISECONDS => Millis}
import scala.math.floor
package object util {
private def measure[A](thunk: => A): (A, Long) = {
val before = System.nanoTime
val result = thunk
val delta = (System.nanoTime - before)
(result, delta)
}
private def stats(times: Seq[Long]) = {
val sortedTimes = times.sorted
val mean = ("mean", (times.sum / times.size))
val fifty = ("50%", sortedTimes(floor(times.size * 0.5).toInt))
val seventyFive = ("75%", sortedTimes(floor(times.size * 0.75).toInt))
val ninety = ("90%", sortedTimes(floor(times.size * 0.90).toInt))
val ninetyNine = ("99%", sortedTimes(floor(times.size * 0.99).toInt))
mean :: fifty :: seventyFive :: ninety :: ninetyNine :: Nil
}
def time[A](unit: TimeUnit = Millis)(thunk: => A): A = {
val (result, time) = measure(thunk)
println(s"snippet took: ${unit.convert(time, Nanos)} ${unit.toString.toLowerCase}")
result
}
def benchmark[A](unit: TimeUnit = Millis, times: Int = 100)(thunk: => A) = {
// warm up.
(1 to 100) foreach (i => thunk)
// measure.
val results = (1 to times) map (i => measure(thunk)) map (_._2)
val info = stats(results)
// inform.
println("RESULTS:")
println("--------")
println()
info foreach { case (label, value) =>
printf("%-4s: %-6s %s %n", label, unit.convert(value, Nanos), unit.toString.toLowerCase)
}
}
}
RESULTS:
--------
mean: 5 milliseconds
50% : 5 milliseconds
75% : 6 milliseconds
90% : 6 milliseconds
99% : 24 milliseconds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment