python - How does one identify the time consuming tasks in a SimPy simulation? -
i speed simpy simulation (if possible), i'm not sure best way insert timers see taking long.
is there way this?
i recommend using runsnakerun (or guess snakeviz in py3x), uses cprofile(there directions on runsnakerun's webpage)
basically run program
python -m cprofile -o profile.dump my_main.py
then can nice visual view of profile runsnake (or snakeviz if using py3)
python runsnakerun.py profile.dump
(note running in profile mode slow down code more ... identify slow parts)
Comments
Post a Comment