No GPU usage on remote ML with Windows 10 and Docker Desktop

Hello,
I have set up a remote ML container on my Win10-desktop, because it is more powerful. The jobs run on my PC and they run faster than on the immich-host, but taks manager shows CPU usage, but no GPU usage. How can I fix that?

docker-compose

name: immich_remote_ml

services:
  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-cuda
    extends:
      file: hwaccel.ml.yml
      service: cuda # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    restart: always
    ports:
      - 3003:3003

volumes:
  model-cache:
Was this page helpful?