
27 Jul
2007
27 Jul
'07
7:25 p.m.
On Sat, Jul 28, 2007 at 12:11:31AM +0100, Jon Harrop wrote:
Is there a memory profiler for Haskell?
Yes. GHC, NHC and HBC all have integrated heap profilers. ghc --make -prof -auto-all ... ./MyProgram +RTS -hc -RTS ./MyProgram +RTS -hm -RTS ./MyProgram +RTS -hd -RTS ./MyProgram +RTS -hy -RTS ... http://haskell.org/ghc/dist/current/docs/users_guide/prof-heap.html Stefan