Troubleshooting ############################################### #. **OpenVINO can't detect GPU device** .. code-block:: bash $ python3 -c "from openvino import Core; ie = Core(); print(ie.available_devices)" ['CPU'] Please firstly make sure you have installed the :doc:`firmware ` and :doc:`driver ` for GPU. If you are still encountering this issue: .. code-block:: bash $ export OCL_ICD_VENDORS=/etc/OpenCL/vendors #. **MESA: warning: Driver does not support the 0x7d51 PCI ID** .. code-block:: console MESA: warning: driver does not support the 0x7d51 PCI ID. DRI3 not available Please update mesa to fix this issue. .. code-block:: bash $ sudo apt update $ sudo apt install mesa-utils libgl1-mesa-dri libglx-mesa0 libigc2 #. **IPEX workloads are incompatible with the NPU driver** .. code-block:: console RuntimeError: Native API failed. Native API returns: -1102 (PI_ERROR_UNINITIALIZED) -1102 (PI_ERROR_UNINITIALIZED) To run IPEX workloads, please uninstall the NPU debs package installed as according to :doc:`NPU firmware `. .. code-block:: bash $ sudo dpkg --purge --force-remove-reinstreq intel-driver-compiler-npu intel-fw-npu intel-level-zero-npu #. **DepthAnythingV2 checkpoint download failed** .. _depthanythingv2_troubleshooting: Please modify the following download link in the script ``/depth_anything_v2/config.py``. .. code-block:: python Encoder.vitb: { None: "https://hf-mirror.com/depth-anything/Depth-Anything-V2-Base/resolve/main/depth_anything_v2_vitb.pth?download=true", .. }, #. **IOMMU deivce assigned failed when ACRN hypervisor boot up** .. code-block:: console failed to unassign iommu device! 1. Please check VT-d Enabled in BIOS, refer to the BIOS configuration listed in :doc:`OS Setup `. 2. Please check all PCIe devices plugged in have been enabled correctly.