Re: [Haskell-cafe] Execution call graph pruning

2010-06-09 Thread C K Kashyap
Thanks Ivan. Regards, Kashyap On Wed, Jun 9, 2010 at 4:40 AM, Ivan Lazar Miljenovic < ivan.miljeno...@gmail.com> wrote: > C K Kashyap writes: > > > Hi, > > I have a call grah which contains information of the edges in the > following > > format > > > > caller callee count (time spent by the

Re: [Haskell-cafe] Execution call graph pruning

2010-06-08 Thread Ivan Lazar Miljenovic
C K Kashyap writes: > Hi, > I have a call grah which contains information of the edges in the following > format > > caller callee count (time spent by the > caller) > === > foo bar 10100 > xxx yyy 2010 > zzz yyy 10

[Haskell-cafe] Execution call graph pruning

2010-06-08 Thread C K Kashyap
Hi, I have a call grah which contains information of the edges in the following format caller callee count (time spent by the caller) === foo bar 10100 xxx yyy 2010 zzz yyy 1010 (I used pintool pintool.org t