forked from easonabc-public/paia-hw5
20 lines
457 B
Bash
20 lines
457 B
Bash
export FILE=profile.pstats
|
|
|
|
python -m cProfile -s cumtime -o $FILE \
|
|
-m mlgame \
|
|
-i ../ml/ml_play_template_1P.py \
|
|
-i ../ml/ml_play_template_1P.py \
|
|
-i ../ml/ml_play_template_1P.py \
|
|
-i ../ml/ml_play_template_1P.py \
|
|
-i ../ml/ml_play_template_1P.py \
|
|
-i ../ml/ml_play_template_2P.py \
|
|
-f 120 -1 \
|
|
../ \
|
|
--frame_limit=30 --sound="off"
|
|
|
|
python -m gprof2dot -f pstats $FILE | dot -T png -o ${FILE}.png
|
|
|
|
# python -m pstats profile.pstats
|
|
# sort cumtime
|
|
# stats
|