"Tom Harper" <[EMAIL PROTECTED]> writes: > I am in the process of writing a library for my MSc dissertation and > would like to do some benchmarking. In doing so I need to compare > the time and space of my library with some other code. Is there a > framework for doing so in Haskell, aside from the Profiling tools in > GHC? Basically I'm looking for something like QuickCheck, but that > helps with generating repeatable tests to measure performance. Is > there anything out there that anyone would recommend?
I've hacked around with QuickCheck to run somewhat more predictable tests with timing results. It's not beautiful, but if it's any help: http://malde.org/~ketil/biohaskell/biolib/Test/QuickBench.hs ^ (the URL up until here --------------------+ is the darcs archive, should you want to look at the whole thing in context) -k -- If I haven't seen further, it is by standing in the footprints of giants _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
