hsbencher-1.8.0.4: Launch and gather data from Haskell and non-Haskell benchmarks.

Safe HaskellNone

HSBencher.Internal.MeasureProcess

Description

This module provides tools to time a sub-process (benchmark), including a facility for self-reporting execution time and reporting garbage collector overhead for GHC-compiled programs.

Synopsis

Documentation

measureProcessSource

Arguments

:: LineHarvester

Stack of harvesters

-> CommandDescr 
-> IO SubProcess 

This runs a sub-process and tries to determine how long it took (real time) and how much of that time was spent in the mutator vs. the garbage collector.

It is complicated by:

  1. An additional protocol for the process to report self-measured realtime (a line starting in SELFTIMED, ditto for JITTIME:)
  2. Parsing the output of GHC's +RTS -s to retrieve productivity OR using lines of the form PRODUCTIVITY: XYZ

Note that +RTS -s is specific to Haskell/GHC, but the PRODUCTIVITY tag allows non-haskell processes to report garbage collector overhead.

This procedure is currently not threadsafe, because it changes the current working directory.

selftimedHarvester :: LineHarvesterSource

Check for a SELFTIMED line of output.

ghcProductivityHarvester :: LineHarvesterSource

Retrieve productivity (i.e. percent time NOT garbage collecting) as output from a Haskell program with +RTS -s. Productivity is a percentage (double between 0.0 and 100.0, inclusive).

taggedLineHarvester :: Read a => ByteString -> (a -> RunResult -> RunResult) -> LineHarvesterSource

Check for a line of output of the form TAG NUM or TAG: NUM. Take a function that puts the result into place (the write half of a lens).