Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Haskell gurus should be able to get this in a jiffy, I was very new to haskell and wondering how to go about doing that through system time functions (for a program or an executable) in haskell.

I am traveling and most of the sites aren't rendering properly on my phone, thats the primary reason I have resorted to SO for this nifty question.

Thanks for reading and look forward to your responses!

share|improve this question
See also stackoverflow.com/questions/1516808/… – Don Stewart May 11 '11 at 18:16

3 Answers

up vote 7 down vote accepted

Assuming you don't just want to measure the total running time of your program, like so:

 $ time ./A

Then you can time a computation a number of ways in Haskell:

For more statistically sound measurement, consider

Finally, in all cases, you need to think about lazy evaluation: do you want to measure the cost of fully evaluating whatever data you produce, or just to its outermost constructor?

share|improve this answer
will this work on Windows too? – user645466 May 11 '11 at 18:31
The Haskell solutions all work on Windows, yes. – Don Stewart May 11 '11 at 19:05
thanks!! – user645466 May 11 '11 at 19:16

1) If you want to benchmark something, use the criterion package.

2) If you want to time a function and are positive you have controlled for laziness as needed, then just use Data.Time.getCurrentTime from the time package.:

import Data.Time
...
   start <- getCurrentTime
   runOperation
   stop <- getCurrentTime
   print $ diffUTCTime stop start

A slicker packaging of the above pattern can be found in the timeit package.

3) If you actually want the running time of a program that just happens to be written in Haskell then use your systems time utility. For most POSIX systems (Mac, Linux) just run:

$ time ./SomeProgram

And it will report user, wall, and system time.

share|improve this answer
thanks a ton! – user645466 May 11 '11 at 19:16

I'm not sure how accurate it is, but using :set +s in ghci will show the time and space used for subsequent computations.

share|improve this answer
thanks for the insight! – user645466 May 11 '11 at 20:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.