728x90
반응형
time 명령어를 이용한 간단한 시간 측정
$ /usr/bin/time -p python test_1.py
real 64.38 # 경과된 시간
user 63.65 # cpu가 커널함수 외 작업에 소비한 시간
sys 0.36 # 커널함수를 수행하는데 소비한 시간
좀 더 자세한 정보는 -lp
옵션을 사용한다
$ /usr/bin/time -lp python test_1.py
real 64.20
user 63.71
sys 0.28
7098368 maximum resident set size
0 average shared memory size
0 average unshared data size
0 average unshared stack size
2444 page reclaims
40 page faults
0 swaps
0 block input operations
0 block output operations
0 messages sent
0 messages received
0 signals received
14 voluntary context switches
28176 involuntary context switches
728x90
728x90
BIG
'Programming > Python' 카테고리의 다른 글
RabbitMQ - python (0) | 2020.06.25 |
---|---|
python 에서 redis를 메시지 queue로 사용 (0) | 2020.06.19 |
파이썬 정규식(regular expression:regex) 사용 - 일부만 추출 (0) | 2020.06.15 |
python code reformatter black + pycharm (0) | 2020.06.13 |
패키지, 모듈, import 에러 (0) | 2020.06.12 |
댓글