그래픽카드 CUDA 코어(Cores) 수 확인
start()
{
그래픽 카드 확인 방법은 아래 포스트에 있습니다.
https://mickael-k.tistory.com/16
GPU(그래픽카드) 확인 방법
GPU-Z 이용 GPU-Z를 설치하신 후 실행합니다. 하단에 첨부한 그림과 같이 Memory size란에서 그래픽카드 램 용량을 확인하실 수 있습니다. GPU-Z를 설치하시면 메모리타입(memory type)은 물론 GPU clok, 바이오스..
mickael-k.tistory.com
-
CUDA Core 수 확인
- 잘 정리 해 놓은 웹사이트에서 발췌한 사진 입니다.
근데 이상하게 저는 Ti가 아닌 일반 1050에 4GB인데 없네요. 근데 GPU-Z로 확인 해 봤을 때 Bus Width나 Band Width가 Ti랑 같으니 Ti로 확인 했습니다. CUDA Cores는 768개네요!
CUDA Cores = 768;
참고!
-
쿠다 성능(Cuda Compute Capability) 확인
1) 아래 웹사이트 진입
https://www.wikiwand.com/en/CUDA#/GPUs_supported
CUDA | Wikiwand
CUDA is a parallel computing platform and application programming interface model created by Nvidia.[1] It allows software developers and software engineers to use a CUDA-enabled graphics processing unit for general purpose processing — an approach termed
www.wikiwand.com
2) 찾기
'ctrl+f'로 자신 모델 찾습니다.
- 저는 'GTX 1050'
3) 성능 확인
맨 왼쪽이 성능 입니다. 6.1이네요
※위 방법이 안되면 아래 웹사이트에 들어간다.
이후 여러 메뉴 중에 'CUDA-Enabled GeForce and TITAN Products'를 클릭하여 Compute Capability를 확인 하는 방법 도 있다.
https://developer.nvidia.com/cuda-gpus#compute
CUDA GPUs
Recommended GPU for Developers NVIDIA TITAN RTX
developer.nvidia.com
CUDA Compute Capability = 6.1;
return 0;
}