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 | 29 | 30 | 31 |
Tags
- 프로그래머스
- 부스트캠프
- rnn
- LeetCode
- Linear Regression
- 프롬프트
- Linear Model
- Programmers
- Django
- Python
- dl
- NLP
- ChatGPT
- deque
- 알고리즘
- attention
- 일기
- 기계학습
- 머신러닝
- 코테
- machinelearning
- BFS
- 코딩테스트
- gradient descent
- 파이썬
- transformer
- Deeplearning
- GPT
- LLM
- prompt engineering
Archives
- Today
- Total
크크루쿠쿠
[RTX 3090] RuntimeError: CUDA error: no kernel image is available for execution on the device 본문
StackOverflow
[RTX 3090] RuntimeError: CUDA error: no kernel image is available for execution on the device
JH_KIM 2022. 2. 24. 10:05RTX 30시리즈의 경우에는 CUDA 버전이 11.0 이상만 호환이 되기 때문에 나의 경우에는 torch cuda version이 10 버전을 다운받아서 생긴 문제였다.
아마 torch 1.7 버전부터 cuda 11.0 을 지원하는것으로 알고 있다.
그러므로 설치할 때
pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 -f https://download.pytorch.org/whl/torch_stable.html
이렇게 cuda 버전을 명시해줘야 에러를 면할 수 있다.
'StackOverflow' 카테고리의 다른 글
RuntimeError: Output 0 of UnbindBackward is a view and is being modified inplace. (0) | 2022.02.24 |
---|---|
Vscode 에서 파일 삭제,입력 최대한 지양하자 (0) | 2022.01.12 |
pytorch Dataset 에서 AttributeError: (0) | 2022.01.11 |
Pytorch: IndexError: index out of range in self (0) | 2021.12.22 |
ImportError: IProgress not found. (0) | 2021.11.21 |
Comments