But as far as I know, Iris XE is not a discrete GPU, it's integrated together in intel CPUs. How can I know my immich instance on "11th Gen Intel® Core™ i7-1165G7 @ 2.80GHz" is processing machine learning with openvino.
here is my docker-compose settings
## WARNING: Make sure to use the docker-compose.yml of the current release:## https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml## The compose file on main may not be compatible with the latest release.#name: immichservices: 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} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - /mnt/user/tempo/immich:/cache - /dev/bus/usb:/dev/bus/usb env_file: - .env device_cgroup_rules: - 'c 189:* rmw' devices: - /dev/dri:/dev/dri restart: always healthcheck: disable: false
## WARNING: Make sure to use the docker-compose.yml of the current release:## https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml## The compose file on main may not be compatible with the latest release.#name: immichservices: 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} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - /mnt/user/tempo/immich:/cache - /dev/bus/usb:/dev/bus/usb env_file: - .env device_cgroup_rules: - 'c 189:* rmw' devices: - /dev/dri:/dev/dri restart: always healthcheck: disable: false