##// END OF EJS Templates
Bash para medir testear el tiempo de ejecución y rendimiento del código en python
Bash para medir testear el tiempo de ejecución y rendimiento del código en python

File last commit:

r327:3d4af4a59855
r327:3d4af4a59855
Show More
speedTool.bash
7 lines | 160 B | text/x-sh | BashLexer
#!/bin/sh
filename = "testRawData.py"
output = "output"
python -m cProfile -o $output $filename
gprof2dot -f pstats $output.pstats | dot -Tpng -o $output.png