In ghci? :set +s gets you timing and allocation stats for all evaluated expressions. You can write a time yourself using System.CPUTime.getCPUTime, if you want. – Daniel FischerApr 26 '12 at 22:23
I forgot that small little i character. Thank you! – Christian JonassenApr 26 '12 at 22:24
Just note that the interactive program will not give you accurate information about compiled performance. – rotskoffApr 26 '12 at 23:02
3
You might like time runhaskell foo.hs and its more honest fellow ghc foo.hs -O2 && time ./foo. – Daniel WagnerApr 27 '12 at 0:27
If you enter :set +s in GHCi, then timing info will be printed after the evaluation of every expression. Note that this will be the timing of the expression as evaluated in the interpreter, without optimisation, so it won't necessarily be an accurate measure of how long things take, or even which of two versions of the same code will be faster, in actual compiled code. For that, take a look at the criterion benchmarking library.
:set +sgets you timing and allocation stats for all evaluated expressions. You can write atimeyourself usingSystem.CPUTime.getCPUTime, if you want. – Daniel Fischer Apr 26 '12 at 22:23time runhaskell foo.hsand its more honest fellowghc foo.hs -O2 && time ./foo. – Daniel Wagner Apr 27 '12 at 0:27