Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using the line-profiler (in ipython) on compiled Cython code

I read the answer to this question How to profile cython functions line-by-line, but I can't seem to get it to work with my setup.

I have a cumsum.pyx file:

# cython: profile=True
# cython: linetrace=True
# cython: binding=True
DEF CYTHON_TRACE = 1

def cumulative_sum(int n):
    cdef int s=0, i
    for i in range(n):
        s += i

    return s

I compiled it with:

cython cumsum.pyx
gcc cumsum.c $(pkg-config --cflags --libs python3) -o cumsum.so -shared -fPIC

Then I tried to profile it in ipython:

%load_ext line_profiler
from cumsum import cumulative_sum
%lprun -f cumulative_sum cumulative_sum(100)

I don't get an error message, only an empty profile:

Timer unit: 1e-06 s

Total time: 0 s
File: cumsum.pyx
Function: cumulative_sum at line 6

Line #      Hits         Time  Per Hit   % Time  Line Contents
==============================================================
     6                                           def cumulative_sum(int n):
     7                                               cdef int s=0, i
     8                                               for i in range(n):
     9                                                   s += i
    10                                           
    11                                               return s

How can I get this to work?

PS: I use CMake, not setup.py, so I would appreciate a build system agnostic solution

like image 864
user357269 Avatar asked Mar 25 '26 17:03

user357269


1 Answers

The documentation on Cythons "Profiling" already includes an example how to set the CYTHON_TRACE macro:

# distutils: define_macros=CYTHON_TRACE_NOGIL=1

instead of your DEF CYTHON_TRACE = 1.

It worked when I compiled it using %%cython:

%load_ext cython
%%cython

# cython: profile=True
# cython: linetrace=True
# cython: binding=True
# distutils: define_macros=CYTHON_TRACE_NOGIL=1

def cumulative_sum(int n):
    cdef int s=0, i
    for i in range(n):
        s += i
    return s

And showed the profiling:

%load_ext line_profiler
%lprun -f cumulative_sum cumulative_sum(100)
[...]
Line #      Hits         Time  Per Hit   % Time  Line Contents
==============================================================
     7                                           def cumulative_sum(int n):
     8         1            8      8.0      3.5      cdef int s=0, i
     9         1            3      3.0      1.3      for i in range(n):
    10       100          218      2.2     94.4          s += i
    11         1            2      2.0      0.9      return s
like image 83
MSeifert Avatar answered Mar 28 '26 05:03

MSeifert