I am trying to optimize some code with Cython, but cProfile is not providing enough information.
To do a good job at profiling, should I create many su
You need to enable profiling support for your Cython code. Use
# cython: profile=True
http://docs.cython.org/src/tutorial/profiling_tutorial.html