PyTorch torch_shm_manager Runtime Error
ProgrammingRuntimeError: error executing torch_shm_manager at "/Users/koodev/.virtualenvs/pyto/lib/python3.6/site-packages/torch/bin/torch_shm_manager" at ../torch/lib/libshm/core.cpp:99
PyTorch 코드를 만들다가 위와 같은 런타임 에러가 났다. 원인은 현재 환경에서 해당 유틸(torch_shm_manager)에 실행 권한이 없어서였다. chmod +x
로 해당 파일의 권한을 수정해주면 해결된다.
참고: https://qiita.com/toshitanian/items/5137a68bbc9396817a3f
'Programming' 카테고리의 다른 글
macOS 앱에서 dylib 이 로드되지 않는 문제 (0) | 2020.01.06 |
---|---|
Places365-Challenge mean pixel value (0) | 2019.11.07 |
Tentative Symbol in C (0) | 2019.06.07 |
pip 설치 중 setuptools 관련 오류 (0) | 2019.06.04 |
ARM A32 명령어셋 VZIP (0) | 2019.03.11 |