본문 바로가기

프로그래밍/Python

[Python] Python Profiling 관련 메모

반응형
  • cProfile : 파이썬 표준라이브러리 프로파일러
    python -m cProfile script.py
    python -m cProfile -s tottime script.py
    python -m cProfile -o prof.out script.py
  • 프로파일 시각화 : Visualizing the Results of Profiling Python Code
    • pyprof2calltree
    • pyinstument
      python -m pyinstrument --show-all script.py
728x90