Hailo SW suite No GPU connected

ddkrd@workstation:~/Downloads/hailo_ai_sw_suite$ ./sw_suite_check_system_requirements.sh 
INFO: Checking system requirements...
INFO: No GPU connected.
WARNING: Recommended package Node.js not found.
INFO: System requirements check finished successfully.

I’m on Ubuntu 20.04, the software suite was successfully installed with the self-extractable, however it is telling me that there’s no GPU connected. The graphics card is an gtx 1080, I’ve got the Nvidia driver 535 installed. What could be wrong here?

Hey @oktober.yildiz

Let’s check three key areas:

  1. CUDA Toolkit Check

    nvcc --version
    

    If not installed:

    sudo apt update
    sudo apt install nvidia-cuda-toolkit
    
  2. GPU Status Verification

    nvidia-smi
    

    This should show your GTX 1080 details and driver version.

  3. Environment Setup
    Add NVIDIA libraries to path:

    export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
    

    Verify GPU detection:

    lspci | grep -i nvidia
    

If issues persist after trying these steps, please share the output of these commands for further assistance.

Best Regards,
Omri

Yup, number 1 fixed it. :slight_smile: Thank you Omria for your patience and tolerance with my constant whining and frustration!

Just to be clear, there is no ABSOLUTE requirement to use the NVIDIA driver of 525?

If so you should state that it is equal to or greater than 525 that works. It has been confusing

1 Like