Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- pytorch
- 수기
- NLP
- 석사
- CUDA
- 대학원
- Classification Task
- Word2Vec
- 품사태깅
- naver movie review
- sentiment analysis
- 인공지능
- 우울증
- 전처리
- word embedding
- 자연어처리
Archives
- Today
- Total
슬기로운 연구생활
[ GPU ] CUDNN_STATUS_EXECUTION_FAILED 본문
* Error Message : RuntimeError: cuDNN error: CUDNN_STATUS_EXECUTION_FAILED
* Problem
pytorch의 GPU가 문제가 발생했다.
최근의 GPU를 2080TI로 변경했는데 이게 문제였다.
GPU 2080TI로 하고 CUDA 9점대 버전을 사용하면 Pytorch가 제대로 인식을 못하는 에러가 발생한다.
* Solution
해결방법은 간단한다.
1. CUDA를 10점대 버전으로 업데이트 한다.
2. Pytorch를 업데이트 한다.
conda install pytorch torchvision cudatoolkit=10.0 -c pytorch
'슬기로운 에러 생활' 카테고리의 다른 글
[ BERT ] NotImplementedError: Layers with arguments in __init__ must override get_config (0) | 2020.05.26 |
---|---|
[ Tensorflow ] tensorflow version error (0) | 2020.05.26 |
[ Scipy ] scipy import error (0) | 2020.05.24 |
[ Tensorflow ] tensorflow load error (0) | 2020.05.24 |
[ Pandas ] ImportError: No module named pandas (2) | 2020.05.24 |
Comments