/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Development/debugging/profiling/python.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2015-08-21 03:52:00 UTC
  • Revision ID: csa@suren.me-20150821035200-xu1zh22cqlk2omcq
Profiling

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Python
2
 
======
3
 
 Profiller is included in python
4
 
    python -m cProfile -o profile.out <python.scrypt>
5
 
    
6
 
 It could be used together with valgrind, using following command:
7
 
    valgrind --tool=callgrind ${PYTHON} -m cProfile -o ${PACKAGE_HOME}/profile.out ${PACKAGE_HOME}/SOURCES/PyHST.py   $*