Re: memory usage of a specific function

2006-01-05 Thread Stephen Kellett
In message <[EMAIL PROTECTED]>, Sverker Nilsson <[EMAIL PROTECTED]> writes >> Python Memory Validator. >> >> Run your program to completion. >> Switch to the hotspots tab. >> Search for your function. >> All memory used in that function will be shown in the tree (with the >> effective callstack) un

Re: memory usage of a specific function

2006-01-04 Thread Sverker Nilsson
Stephen Kellett wrote: > In message <[EMAIL PROTECTED]>, > > Sverker Nilsson <[EMAIL PROTECTED]> writes > [Note that actually it was Hermann Maier that wrote the following but as quoted, it may look like it was I that wrote it.] > >> i need to find out the memory usage of a specific function th

Re: memory usage of a specific function

2006-01-04 Thread Stephen Kellett
In message <[EMAIL PROTECTED]>, Sverker Nilsson <[EMAIL PROTECTED]> writes >> i need to find out the memory usage of a specific function that i use in >> my program. this function does some recursive calculations and i want my >> program to display the amount of memory the function used to calcula

Re: memory usage of a specific function

2006-01-04 Thread Sverker Nilsson
Hermann Maier wrote: > hi, > > i need to find out the memory usage of a specific function that i use in > my program. this function does some recursive calculations and i want my > program to display the amount of memory the function used to calculate a > specific value. > > thx I was thinking th