Simple decorators to profile the memory usage and execution time.
Project description
simple-profile
Simple decorators to profile the memory usage and execution time.
Installation
pip install simple-profile
Decorators
| Decorator | Description |
|---|---|
@profile() |
Profiles the peak memory usage and the average execution time of a function. |
@memory_profile() |
Profiles only the peak memory usage of a function. |
@time_profile() |
Profiles only the average execution time of a function. |
Usage
1. Profile a function
The @profile() decorator allows to log the peak memory usage and the average execution time of each function call.
By default, memory usage and execution time are logged in the most suitable units, but it is possible to change the units.
from simple_profile import profile
@profile()
def my_function():
return [2 * i for i in range(10)]
my_function()
Output:
my_function | 432 B | 445.2 ns
2. Profile only the memory usage of a function
The @memory_profile() decorator allows to log the peak memory usage of each function call.
This is done using the tracemalloc module provided by Python.
from simple_profile import memory_profile
@memory_profile()
def my_function():
return [2 * i for i in range(10)]
my_function()
Output:
my_function | 432 B
3. Profile only the execution time of a function
The @time_profile() decorator allows to log the average execution time of each function call.
This is done using the timeit module provided by Python.
By default, each function call is repeated 1,000,000 times to get a reliable measurement, but it is possible to change this value.
from simple_profile import time_profile
@time_profile()
def my_function():
return [2 * i for i in range(10)]
my_function()
Output:
my_function | 439.3 ns
4. Change the number of iterations
It is possible to change the number of times a function call is repeated when profiling the execution time.
To do this, you can set the iterations argument of the profile() and time_profile() decorators.
from simple_profile import profile
@profile(iterations=100)
def pi(n):
result = 0
d = 1
for i in range(1, n):
a = 2 * (i % 2) - 1
result += 4 * a / d
d += 2
return result
pi(100)
Output:
pi | 168 B | 6.461 µs
5. Change the time and memory units
It is also possible to change the time and memory units used in the logs.
To do this, you can set the unit argument of the memory_profile() and time_profile() decorators.
For the profile() decorator, you can set the time_unit and memory_unit arguments.
from simple_profile import profile, MemoryUnit, TimeUnit
@profile(memory_unit=MemoryUnit.KILOBYTES, time_unit=TimeUnit.MILLISECONDS)
def exponential(x, n):
result = 1.0
for i in range(n, 0, -1):
result = 1 + x * result / i
return result
exponential(8, 100)
Output:
exponential | 0.168 kB | 0.005429 ms
6. Change the time and memory precision
Moreover, it is possible to change the precision of memory and time values.
To do this, you can define the number of significant digits you want in the precision argument of any decorator provided by this package.
For the profile() decorator, you can set the time_precision and memory_precision arguments for more granular control.
from simple_profile import profile
@profile(precision=10)
def average(lst):
return sum(lst) / len(lst)
average([25, 12, 18, 88, 64, 55, 22])
Output:
average | 120 B | 176.6314 ns
7. Log the arguments and the result
Furthermore, it is possible to log the arguments and the result of each function call.
Indeed, this can be useful to better profile a function and analyze its behavior.
from simple_profile import profile
@profile(print_args=True, print_result=True)
def greeting_message(name, coins):
return "Hello {}! You have {} coins.".format(name, coins)
greeting_message("John", coins=5)
Output:
greeting_message | John, coins=5 | Hello John! You have 5 coins. | 521 B | 350.1 ns
8. Set a custom name for a function
Additionally, it is possible to define a custom descriptive name for each function.
To do this, you can set the name argument of any decorator provided by this package.
from simple_profile import profile
@profile(name="Naive method")
def factorial(n):
result = 1
for i in range(1, n + 1):
result *= i
return result
factorial(10)
Output:
Naive method | 160 B | 411.3 ns
9. Compare multiple functions
from simple_profile import profile
@profile(name="List comprehension")
def my_function(n):
return [pow(2, i) for i in range(n)]
@profile(name="For loop")
def my_function_2(n):
lst = []
for i in range(n):
lst.append(pow(2, i))
return lst
my_function(10)
my_function_2(10)
Output:
List comprehension | 464 B | 666.8 ns
For loop | 312 B | 650.7 ns
10. Profile a recursive function
The decorators work seamlessly with recursive functions.
Only one profiling message is logged per function call even if the function is recursive.
from simple_profile import profile
@profile(print_args=True, print_result=True, iterations=100)
def fibonacci(n):
if n <= 1:
return n
else:
return fibonacci(n - 1) + fibonacci(n - 2)
fibonacci(10)
Output:
fibonacci | 10 | 55 | 1.648 kB | 21.04 µs
11. Enable garbage collection during measurements
By default, garbage collection is temporarily turned off to make measurements more comparable, but it is possible to enable it if you prefer.
To do this, you can set the enable_gc argument of the profile() and time_profile() decorators to True.
from simple_profile import profile
@profile(name="Without GC")
def my_function():
return [oct(i) for i in range(10)]
@profile(name="With GC", enable_gc=True)
def my_function_2():
return [oct(i) for i in range(10)]
my_function()
my_function_2()
Output:
Without GC | 954 B | 666.5 ns
With GC | 954 B | 669.2 ns
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simple_profile-2.0.0.tar.gz.
File metadata
- Download URL: simple_profile-2.0.0.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.3 Linux/6.11.0-26-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9d9d2fb8515640440e086ddbddb3991a4ca364af83311802ffa78904d7b7d16
|
|
| MD5 |
bd8d75ed2277045a9c9e1c2ed4bfcfb2
|
|
| BLAKE2b-256 |
9e065d9484a9a7f4c7e50c26bcbfab0a655972ecf5b163b21a8e1fc667d8c5ea
|
File details
Details for the file simple_profile-2.0.0-py3-none-any.whl.
File metadata
- Download URL: simple_profile-2.0.0-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.3 Linux/6.11.0-26-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0262788df40075eede2a1401f4969b9c22c1fb83ffe05977dff1d1396cb9073
|
|
| MD5 |
c89e3367c5c99566d1473ca4253f99b8
|
|
| BLAKE2b-256 |
0545e9b043b6e3eb0c76e93cdcfe3426694d24817861335bbc24dc013152de69
|