Replies: 1 comment
-
confirmed in
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The bug
hardware acceleration on Nvidia grid vgpu not functioning with included docker-compose.yml, had to change /etc/docker/daemon.json and docker compose yaml
Im using a gtx1650 with vgpu unlock
Nvidia-smi does not funtion under docker container and does not use gpu
Failed to initialize NVML: Unknown Error
The OS that Immich Server is running on
Ubuntu 20.04
Version of Immich Server
v1.101.0
Version of Immich Mobile App
n/a
Platform with the issue
Your docker-compose.yml content
Your .env content
Reproduction steps
Additional information
fixes:
no-cgroups = false
in /etc/nvidia-container-runtime/config.toml
/etc/docker/daemon.json
{
"default-runtime": "nvidia",
"exec-opts": [
"native.cgroupdriver=cgroupfs"
],
"runtimes": {
"nvidia": {
"args": [],
"path": "nvidia-container-runtime"
}
}
}
and change in docker
deploy: resources: reservations: devices: - driver: nvidia count: 1 capabilities: - gpu - compute - video
TO
runtime: nvidia deploy: resources: reservations: devices: - capabilities: [gpu]
Beta Was this translation helpful? Give feedback.
All reactions