본문 바로가기
카테고리 없음

리눅스 cpu core, thread, hyperthread확인방법

by bents 2022. 11. 19.

언제 cpu core, thread를 확인하나?

- 병렬처리하려면 worker, thread를 얼마나 할당해야 하나 고민이 든다. 그럴때, 우리는 core와 thread를 확인하여 적합한 값을 할당해야 한다.

 

스레드 / 코어 확인

cat /proc/cpuinfo | egrep 'siblings|cpu cores' | head -2 

 

스레드 / 코어 확인

dmidecode -t processor | egrep 'Core Count|Thread Count' | head -2

 

하이퍼스레딩 사용 확인

dmidecode -t processor | grep HTT | head -1