에러 관리
-
Failed to initialize NVML: Unknown Error에러 관리 2024. 10. 7. 22:18
[이슈]host machine에서는 GPU가 잘 detect 되는데, docker container에서는 Failed to initialize NVML: Unknown Error, Failed to detect NVIDIA driver version.이런 에러가 났다. [host machine]- NVIDIA GeForce RTX 4090 x4- nvidia-driver-560 (recommanded) installed- cuda 12.6 [docker container]- nvcr.io/nvidia/pytorch:22.11-py3- pytorch 1.13- cuda 11.8 [해결 방법]1. docker info를 확인한다. Cgroup Driver에 systemd라고 되어있으면 그게 문제다. do..
-
vscode에서 commandline으로 run 할때 DEBUG 하기에러 관리 2023. 6. 22. 17:28
1. commandline으로 run할때 launch.json에 아래와 같이 써준다. { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Attach", "type": "python", "request": "attach", "connect" :{ "host" : "localhost", "port": 7000 } } ] } 2. t..