SnakeViz library in PythonProfiling is a significant form of analysis that we can utilize to analyze the time or space complexity of the code. Programming language like Python offers various libraries to serve the purpose of profiling. Some examples of the profiling libraries to analyze time complexity can be cProfile, profile, line_profiler, and more. And some examples of the profiling libraries to analyze space complexity are memory_profiler, memprof, guppy/hpy, and more. The outputs produced by profiling libraries like cProfile usually log files with multiple lines, explaining the utilization time of different function calls. If the function is very deep and has multiple lines of code, then analyzing such log files can be tiresome work. Data visualization is a process where we can represent a lot of data. This data consists of different patterns that can be caught by the human eye and allow us to understand the data in a better way. Python has a library known as SnakeViz, which can accept profiling files produced by the cProfile library and generate the visualization. Understanding the Python SnakeViz libraryThe SnakeViz library is a browser-based graphical viewer of the output of the cProfile module in the Python programming language. It is an alternative to utilizing the standard library pstats module. The SnakeViz library was originally inspired by RunSnakeRun. This library can work on Python 2.7 as well as Python 3. The SnakeViz library is still likely to work on Python 2.6; however, official support has been dropped now that Tornado no longer supports Python 2.6. The SnakeViz library consists of two visualization styles for visualizing profiling results.
The icicle chart utilizes the breadth of the rectangle in order to represent the time taken by a function, and the sunburst chart utilizes an angular extent of arc in order to represent the time taken by a function. The function that calls other functions will have a special child, representing the time taken by that function outside of other functions that it calls. The only function which calls other functions will have such a child. How to Install the Python SnakeViz library?In order to install the Python library, we need ‘pip‘, a framework to manage packages required to install the modules from the trusted public repositories. Once we have ‘pip‘, we can install the snakeviz library using the command from a Windows command prompt (CMD) or terminal as shown below: Syntax: We will now understand the usage of the SnakeViz library through different examples. Some Examples based on SnakeVizLet us now consider some examples based on the SnakeViz library. Example 1: SnakeViz from Command Line/ShellThe following example demonstrates the use of the SnakeViz library. In this example, we will call the mainFunction(), which will call three functions and prints results returned by all one by one. All three functions are similar where each produces 150000 random numbers between 1-150 and returns the mean of that number. The only difference is the time taken by each function. We will manually introduce a timer that will pause each function for a different time. We will profile this script with the help of the cProfile library and then utilize SnakeViz to visualize outputs. File: exampleOne.py Output: # we will utilize the following command to profile exampleOne.py $ python -m cProfile -o exampleOne.prof exampleOne.py 75.36921333333333 75.40457333333333 75.51178 # we can then call the below command to launch SnakeViz # visualization in the browser $ snakeviz exampleOne.prof # Once we execute the above command, the SnakeViz library will launch # visualization on a browser Explanation: In the above snippet of code, we have imported the required modules. We have then defined some functions like verySlowRandomGenerator, slowRandomGenerator, and fastRandomGenerator in order to generate similar output. Within these functions, we have also included the sleep() method of the time module with different values that helps us create a difference in time taken by each function. We have then defined the mainFunction() function, where we have printed the values of the above-defined functions. At last, we have called the mainFunction() function. In the above screencast, we can observe that the SnakeViz library produced two charts by default, and we can alter the chart from the dropdown. All individual lines of profiling will be displayed in the table below for the visualization.
We will now look into the different components of visualization, which can help us understand the visualization in a better way.
Example 2: SnakeViz inside Jupyter NotebookWe can easily utilize the SnakeViz library within the Jupyter notebook as well. Firstly, we are required to load the SnakeViz library as an extension within the notebook, and then we can call snakeviz as a line or cell magic command. Let us consider the following syntax to load the SnakeViz library as an extension. Syntax: Let us now use the same code as the previous example; however, we will use the %snakeviz line command while calling the mainFunction() in order to generate the SnakeViz visualization for it. It will generate visualization within the notebook. File: exampleTwo.py Output: 75.41503333333333 75.59046666666667 75.37472 *** Profile stats marshalled to file '/tmp/tmps5uyxuux'. Embedding SnakeViz in this document... # this will return the SnakeViz visualization Explanation: In the above snippet of code, we have used the code from the previous example. We have then used the %snakeviz mainFunction() statement in order to call the function and generate the SnakeViz visualization for it. Example 3:Let us now consider the following example where we will generate the SnakeViz visualization again with the help of the same code; however, this time, we will be using the %%snakeviz cell magic command in order to explain its usage of it. File: exampleThree.py Output: 75.67562666666667 75.38932 75.47096666666667 *** Profile stats marshalled to file '/tmp/tmphty5rhzv'. Embedding SnakeViz in this document... # this will return the SnakeViz visualization Explanation: In the above snippet of code, we used the %%snakeviz cell magic command and repeated the code snippet from the previous example. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263197.html