I'm working on a large code base where most of the computation heavy is done within c++ extensions to Python. The code is starting to become rather slow, so I want to understand what in the c++ extension that consumes the time (when I run CProfile on a python file most of the time is directed to one c++ entry).
I found this old question, there are several great suggestions for linux based code, unfortunately I'm stuck with Windows and Visual Studio. Is there any suggestions how to profile what in C++ that consumes the time?