The Python Performance Tuner
Project description
PPT - The Python Performance Tuner
ppt
is a tool for tuning the performance of Python programs.
Install
pip install ppt
Example
Timing
import ppt
import time
if __name__ == '__main__':
for _ in range(10):
ppt.time('big')
time.sleep(0.5) # Big computation
ppt.time('medium')
time.sleep(0.3) # Medium computation
ppt.time('fast')
time.sleep(0.01) # Fast computation
# Stop current timing
ppt.stop()
# Print current timings
ppt.summary()
# Detailed statistics from pstats
ppt.stats()
Output
big: 40 function calls in 5.006 seconds
medium: 40 function calls in 3.003 seconds
fast: 40 function calls in 0.101 seconds
********** big **********
40 function calls in 5.006 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
10 5.005 0.501 5.005 0.501 {built-in method time.sleep}
10 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:42(time)
10 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:17(stop)
10 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
********** medium **********
40 function calls in 3.003 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
10 3.003 0.300 3.003 0.300 {built-in method time.sleep}
10 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:42(time)
10 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:17(stop)
10 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
********** fast **********
40 function calls in 0.101 seconds
Ordered by: cumulative time
ncalls tottime percall cumtime percall filename:lineno(function)
10 0.101 0.010 0.101 0.010 {built-in method time.sleep}
9 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:42(time)
10 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:17(stop)
1 0.000 0.000 0.000 0.000 /home/seba-1511/Dropbox/Dev/perf/ppt/profiler.py:53(stop)
10 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
Plotting
The following start a Visdom server and plots 4 lines of random samples.
import ppt
import random, time
if __name__ == '__main__':
ppt.plot(1)
ppt.plot(1)
ppt.plot(1)
ppt.plot(1)
for i in range(10):
for session in ['a', 'b', 'c', 'd']:
time.sleep(0.2)
ppt.plot(random.random(), session)
ppt.close()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ppt-0.0.7.1.tar.gz
(5.7 kB
view details)
File details
Details for the file ppt-0.0.7.1.tar.gz
.
File metadata
- Download URL: ppt-0.0.7.1.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c15d3e747d33237c1aca2812b2bd66ea3735db0c355e7b55bbd979e12b5a96a |
|
MD5 | dbb31ea63c9cfd2581581075936fecfa |
|
BLAKE2b-256 | 3df76a8e790d80f2470d851cd7a39db64832f2f6859ca75c526c9275b51867b4 |