repa-io-3.4.0.2: Read and write Repa arrays in various formats.

Safe HaskellSafe
LanguageHaskell98

Data.Array.Repa.IO.Timing

Description

Timing utilities used for benchmarks in the repa-examples package.

Synopsis

Documentation

data Time Source

Abstract representation of process time.

milliseconds :: TimeUnit Source

microseconds :: TimeUnit Source

cpuTime :: TimeUnit -> Time -> Integer Source

wallTime :: TimeUnit -> Time -> Integer Source

time :: IO a -> IO (a, Time) Source

Time some IO action. Make sure to deepseq the result before returning it from the action. If you don't do this then there's a good chance that you'll just pass a suspension out of the action, and the computation time will be zero.

minus :: Time -> Time -> Time Source

Subtract second time from the first.

plus :: Time -> Time -> Time Source

Add two times.

showTime :: Time -> String Source

Show a time as a string, in milliseconds.

prettyTime :: Time -> String Source

Pretty print the times, in milliseconds.