사용자 도구

사이트 도구


cuda

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
cuda [2017/12/26 04:54] – [Headless GPU의 fan 속도 조절] rex8312cuda [2024/03/23 02:38] (현재) – 바깥 편집 127.0.0.1
줄 4: 줄 4:
     * AWS에 CUDA 6.5 설치     * AWS에 CUDA 6.5 설치
  
 +환경변수로 CUDA device 설정
  
 +<code python>
 +# CUDA 사용금지
 +os.environ['CUDA_VISIBLE_DEVICES'] = ""
 +# 또는 
 +os.environ['CUDA_VISIBLE_DEVICES'] = "-1"
 +
 +# 첫 번째 디바이스만 보임
 +os.environ['CUDA_VISIBLE_DEVICES'] = "0"
 +</code>
 +
 +===== Mixed precision =====
 +
 +  * https://devblogs.nvidia.com/apex-pytorch-easy-mixed-precision-training/
 +  * https://devblogs.nvidia.com/mixed-precision-training-deep-neural-networks/
 ===== CUDA 관련 도구 ===== ===== CUDA 관련 도구 =====
  
줄 71: 줄 86:
   * http://thomascomputerrepair.com/nvidia-settings-kde.php   * http://thomascomputerrepair.com/nvidia-settings-kde.php
  
-===== GPU 모니터링 =====+===== GPU 모니터링 및 작업할당 =====
  
   * https://medium.com/mlreview/using-your-idle-deep-learning-hardware-for-mining-c1b9887491fa   * https://medium.com/mlreview/using-your-idle-deep-learning-hardware-for-mining-c1b9887491fa
 +
 +
 +===== python =====
 +
 +  * https://towardsdatascience.com/python-performance-and-gpus-1be860ffd58d?ncid=so-twi-n2-96487&linkId=100000006881312
 +
 +
 +===== 라이브러리 ======
 +
 +  * cuDF: GPU DataFrames
 +    * https://github.com/rapidsai/cudf
 +  * cuML: scikit-learn과 유사한 ML 라이브러리
 +    * https://github.com/rapidsai/cuml
 +  * cuGraph: 그래프 라이브러리
 +    * https://github.com/rapidsai/cugraph
 +  * Rapids: https://rapids.ai/start.html
  
cuda.1514264098.txt.gz · 마지막으로 수정됨: 2024/03/23 02:37 (바깥 편집)