AI/Deep Learning
2022. 12. 30.
[DL] CUDA, cuDNN이란? - layered architecture for Deep Learning
딥러닝을 공부하는 사람이라면 한 번씩 마주했을 에러들이 있다. RuntimeError: CUDA out of memory. Tried to allocate 64.00 MiB (GPU 0; 6.00 GiB total capacity; 2.02 GiB already allocated; 25.70 MiB free; 2.05 GiB reserved in total by PyTorch) OOM 메모리 할당 에러... 아니면 이런거 RuntimeError: CUDA error: device-side assert triggered 요는, tensorflow든 pytorch든 서로 다른 프레임워크를 사용해도 특정 문제에 대해 리턴되는 CUDA 에러는 같다는 것이다. 이는 CUDA가 딥러닝 프레임워크나 어플리케이션 단에..