Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is anywhere simple method to compute time of function execution in Haskell?

Thank you.

share|improve this question
the answers to my question about criterion may contain some helpful usage examples stackoverflow.com/questions/6637968/… . – gatoatigrado Jul 20 '11 at 22:14
1  
Also, this is a somewhat nuanced situation, because functions don't have to be fully "executed" in Haskell. They just have to be expanded enough for whatever required value. Consider head [1..], which takes the first element of an infinite list. – gatoatigrado Jul 20 '11 at 22:16
@gatoatigrado Thats why criterion has the whnf and nf functions. – alternative Jul 20 '11 at 22:35

3 Answers

up vote 18 down vote accepted

Simplest things is to just do ':set +s' in ghci, and then you can see the execution time of anything you run, along with memory usage.

share|improve this answer

The criterion package was made specifically to do this well.

share|improve this answer

See if http://hackage.haskell.org/package/timeit suits your needs.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.