Skip to content

v0.34

Pre-release
Pre-release
Compare
Choose a tag to compare
@nvdv nvdv released this 17 Nov 10:09
· 211 commits to master since this release

vprof 0.34 has been released!

Thanks to all contributors!

New features

Render visualizations from file

vprof is able to save profile stats to file and render visualizations from previously saved file now.

vprof -c cmh src.py --output-file profile.json

writes profile to file and

vprof --input-file profile.json

renders visualizations from previously saved file.

Please note that stats rendering is supported for the same version only (e.g.
vprof 0.35 won't render stats from 0.34).

Flame graph uses statistical profiler

Flame graph now uses statistical profiler instead of cProfile.

"Profiler" tab

New "Profiler" tab shows how long and how long often various parts of the programs are executed.

profile

Other changes

-s flag has been removed from CLI.

Please, check `vprof -h' or README.md for more info.