RE: [Haskell] reading call graphs

2005-09-13 Thread Simon Marlow
On 24 August 2005 11:10, Malcolm Wallace wrote: > "Scherrer, Chad" <[EMAIL PROTECTED]> writes: > >> individualinherited >> COST CENTRE MODULE no.entries %time %alloc %time %alloc >> >> >> MAIN MAIN 1 0 0.00.0 1

Re: [Haskell] reading call graphs

2005-08-24 Thread Malcolm Wallace
"Scherrer, Chad" <[EMAIL PROTECTED]> writes: > individualinherited > COST CENTRE MODULE no.entries %time %alloc %time %alloc > > > MAIN MAIN 1 0 0.00.0 100.0 100.0 > mainMain228 92329 0.2

Re: [Haskell] reading call graphs

2005-08-24 Thread Ketil Malde
"Scherrer, Chad" <[EMAIL PROTECTED]> writes: > I'm trying to understand the "entries" column. I thought this was the > number of times a given function is called. But "main" is nonrecursive, I thought so, too. My guess would be that your program doesn't do quite what you think it does, or that o

[Haskell] reading call graphs

2005-08-23 Thread Scherrer, Chad
When I compile with ghc -prof -auto-all, I end up with a .prof file that starts out like this: individualinherited COST CENTRE MODULE no.entries %time %alloc %time %alloc MAIN MAIN 1 0 0.00.0 100.0 100.0 main