mcfletch / runsnakerun

RunSnakeRun python profiling GUI front-end
Other
31 stars 6 forks source link

What to expect on the callee tab? #11

Open asodeur opened 4 years ago

asodeur commented 4 years ago

Currently the data displayed on the callee tab is essentially a filtered excerpt from the function listing in the left column, ie in a calltree like below

f()
|_sleep(1)
|_h()
   |_sleep(1)
you'd see something like Function Callee Calls Cum
f sleep 2 2
h 1 1
h sleep 2 1
in the callee tabs. I'd prefer to see call counts and timings restricted to the caller on the callees tab, ie Function Callee Calls Cum
f sleep 1 1
h 1 1
h sleep 1 1

The total timings of the callees would still be printed in the squaremap and the function listing. Thoughts?