gpu not detected hailo ai suite

hailo ai suite doesnt detect my gpu

Hey @Lawrie_Miguel_Gonzal,

Welcome to the Hailo Community!

Your versions look fine, so this is likely just a container configuration problem.

What’s happening:

When you first created your container, the NVIDIA Docker runtime wasn’t properly configured, so GPU support didn’t get enabled. Unfortunately, this gets set up during container creation, not when you resume it, so we need to start fresh.

Here’s the fix:

Delete your current container and create a new one with these commands:

# Check your containers
docker ps -a

# Stop it if it's running
docker container stop hailo_ai_sw_suite_2025-10_container

# Remove the container
docker container rm hailo_ai_sw_suite_2025-10_container

# Create a fresh container
./hailo_ai_sw_suite_docker_run.sh

Don’t worry - you’re only removing the container, not the image, so this should be quick.

Once the new container is created, your GPU should be properly detected for model optimization and compilation.

There’s also a thread here that covers this exact issue if you need more details:

Let me know how it goes!