Optimize your code using profilers
PyCharm allows running the current run/debug configuration while attaching a Python profiler to it. Note that the Diagrams plugin that is bundled with PyCharm should be enabled.
If you have a yappi profiler installed on your interpreter, PyCharm starts the profiling session with it by default, otherwise it uses the standard cProfile profiler.
Besides these two tracing profilers, PyCharm supports also sampling (statistical) profiler vmprof, which should be installed on the selected Python interpreter. If you are Windows 64 bit user, you have to install Python 32 bit, to make vmprof work. Install 32-bit Python as described on the page Python Releases for Windows.
A profiler runs in the following order: vmprof, yappi, cProfile.
Start the profiling session
Click on the main toolbar and select
or select the same command from in the main menu.Ensure that the profiler has started in the dedicated tab of the Run tool window.
Item
Description
Saves the profiling results in the <project name>.pstat file for cProfile profiler and the <project name>.prof file for vmprof.
Stops the profiler.
Closes the profiler tab.
Work with the profiling results
On the toolbar of the profiler tab in the Run tool window, click .
Inspect the profiling results:
The snapshot is saved to the default location under %LOCALAPPDATAPATH%\JetBrains\<product><version>/snapshots on Windows and ~/Library/Caches/JetBrains/<product><version>/snapshots on macOS. For CProfiler, it is saved as <project name>.pstat file. The file opens in the <project name>.pstat tab in the editor, which consists of two tabs: Statistics and Call Graph:
Item
Description
Name
The name of the function.
Call Count
Number of calls of the chosen function.
Time
Execution time of the chosen function plus all time taken by functions called by this function. The percentage of time spent in this call related to time spent in all calls in the parentheses.
Own Time
Own execution time of the chosen function. The percentage of own time spent in this call related to overall time spent in this call in the parentheses.
The snapshot is saved to the default location under %LOCALAPPDATAPATH%\JetBrains\<product><version>/snapshots on Windows and ~/Library/Caches/JetBrains/<product><version>/snapshots on macOS. For vmprof, it is saved as <project name>.prof file.
The file open in the <project name>.pstat tab in the editor, which consists of three tabs: Statistics, Call Graph, and Call Tree
Jump to the source code
To navigate to the source code of a certain function, right-click the corresponding entry on the Statistics tab, and choose from the context menu:
The source code of the function opens in the editor.
View the call graph
To navigate to the call graph of a certain function, right-click the corresponding entry on the Statistics tab, and choose from the context menu.
The Call Graph tab opens with the selected function:
Note the color codes on the Call Graph. The functions marked red consume more time; the fastest functions are green.
Use the toolbar buttons to work with the graph:
Item
Description
Click this icon to increase the scale of the diagram. Alternatively, press NumPad+.
Click this icon to decrease the scale of the diagram. Alternatively, press NumPad-.
Click this icon to restore the actual size of the diagram.
Click this icon to make the contents fit into the current diagram size.
Click this icon to apply the current layout, selected from the Layout node of the diagram context menu.
Click this icon to scale the diagram to the edges of the window.
Click this icon to copy the diagram into the clipboard.
Click this icon and then select any diagram area with the mouse: the selected area will be copied into the clipboard.
Click this icon to export the current diagram to the PNG format.
Click this icon to print the diagram.
Review the existing cProfile snapshots
In the main menu, go to
.In the Select PStat file dialog, choose the desired file with the extension pstat.
The profiling results open in the <project name>.pstat tab in the editor.