[Haskell-cafe] Heap profiling project update

2009-08-02 Thread Patai Gergely
Hi all, It's been a while since I announced anything about the project on the list, but I've been regularly posting about it on my blog [1]. Everyone should feel encouraged to check out the cabalised code [2] and play with it, stress test it. Adventurous ones can also look at the source. ;)

[Haskell-cafe] Heap profiling

2006-09-11 Thread Mark Goldman
Does anyone know if there is a way around the 20 charachter identifier limitation when heap profiling? I have a number of identifiers that indistinguishably break that limit. -mdg -- Our problems are mostly behind us, now all we have to do is fight the solutions.

Re: [Haskell-cafe] Heap profiling

2006-09-11 Thread Donald Bruce Stewart
bitshifter: Does anyone know if there is a way around the 20 charachter identifier limitation when heap profiling? I have a number of identifiers that indistinguishably break that limit. Add custom {-# SCC mybetteridentifier #-} pragmas next to the places with overly long names? -- Don