Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #6211

Re: Hotshoting recursive function

From "Gabriel Genellina" <gagsl-py2@yahoo.com.ar>
Subject Re: Hotshoting recursive function
Date 2011-05-25 05:50 -0300
References <BANLkTikAot0gqxsBHwDbRxj2LaHmrsZ=HQ@mail.gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.2060.1306313281.9059.python-list@python.org> (permalink)

Show all headers | View raw


En Sun, 22 May 2011 10:42:08 -0300, Selvam <s.selvamsiva@gmail.com>  
escribió:

> I am using  hotshot module to profile my python function.
>
> I used the details from (
> http://code.activestate.com/recipes/576656-quick-python-profiling-with-hotshot/
> ).
>
> The function I profile is a recursive one and I am getting the following
> error,
>
> "ProfilerError: profiler already active"
>
> I guess this is due to the recursive call to the profiling function.
>
> I would like to get some suggestions.

The recursive call inside your function should call the undecorated  
function, not the decorated function again. Decorator syntax is not  
convenient anymore.

Using the same names as in the recipe example:


# a recursive function
def my_slow_function(n):
   ...
   return my_slow_function(n-1)


my_profiled_slow_function = hotshotit(my_slow_function)
my_profiled_slow_function(n)


This works, in the sense that it does not raise ProfileError anymore.  
Interpreting profile data is up to you...


-- 
Gabriel Genellina

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Hotshoting recursive function "Gabriel Genellina" <gagsl-py2@yahoo.com.ar> - 2011-05-25 05:50 -0300

csiph-web