[Haskell-cafe] Finding Memory Leaks

2006-11-02 Thread Matthew Bromberg
I have a rather complex Haskell program that performs an engineering simulation using a lot of large complex valued matrices. The imperative components of the simulation are written in C and interfaced into Haskell which handles the higher level logic. This has served me fairly well, and I've

Re: [Haskell-cafe] Finding Memory Leaks

2006-11-02 Thread SevenThunders
SevenThunders wrote: All my code is compiled using the -prof -auto flag and then run using +RTS -hc -RTS. The resulting plots do not show a linear increase in heap usage, although the Windows XP operating system does report such an increase. This is either a bug in GHC or a bug

Re: [Haskell-cafe] Finding Memory Leaks

2006-11-02 Thread Jason Dagit
On 11/2/06, SevenThunders [EMAIL PROTECTED] wrote: SevenThunders wrote: All my code is compiled using the -prof -auto flag and then run using +RTS -hc -RTS. The resulting plots do not show a linear increase in heap usage, although the Windows XP operating system does report such an

Re: [Haskell-cafe] Finding Memory Leaks

2006-11-02 Thread SevenThunders
Jason Dagit-2 wrote: Do any memory leaks show up if you compile with -caf-all when you profile? Jason ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe It doesn't seem to

Re: [Haskell-cafe] Finding Memory Leaks

2006-11-02 Thread Donald Bruce Stewart
mattcbro: Jason Dagit-2 wrote: Do any memory leaks show up if you compile with -caf-all when you profile? Jason ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe