|
ProfilingDingo
How to use profiling with Dingo
ProfilingDingo (optionally) uses the Python cProfile profiler from the command line. You can switch profiling on by starting Dingo with the -p command-line switch: $ dingo -p The output of the profile is a file in your current working directory called dingo.prof which is suitable for processing with the Python pstats module. This page provides a good tutorial on how to process the output of the profiler: http://docs.python.org/lib/profile-instant.html |
Sign in to add a comment