From 0f98e4be31daf0d0eb12b23ba4c9ce7d60167b7c Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 12 Jan 2025 16:53:30 -0700 Subject: [PATCH] Update hailo deps (#15958) --- docker/hailo8l/install_hailort.sh | 2 +- docker/hailo8l/user_installation.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/hailo8l/install_hailort.sh b/docker/hailo8l/install_hailort.sh index efcc4f541..c0198b34c 100755 --- a/docker/hailo8l/install_hailort.sh +++ b/docker/hailo8l/install_hailort.sh @@ -2,7 +2,7 @@ set -euxo pipefail -hailo_version="4.19.0" +hailo_version="4.20.0" if [[ "${TARGETARCH}" == "amd64" ]]; then arch="x86_64" diff --git a/docker/hailo8l/user_installation.sh b/docker/hailo8l/user_installation.sh index 2cf44126f..f1d92b5d5 100644 --- a/docker/hailo8l/user_installation.sh +++ b/docker/hailo8l/user_installation.sh @@ -4,6 +4,7 @@ sudo apt-get update sudo apt-get install -y build-essential cmake git wget +hailo_version="4.20.0" arch=$(uname -m) if [[ $arch == "x86_64" ]]; then @@ -13,7 +14,7 @@ else fi # Clone the HailoRT driver repository -git clone --depth 1 --branch v4.19.0 https://github.com/hailo-ai/hailort-drivers.git +git clone --depth 1 --branch v${hailo_version} https://github.com/hailo-ai/hailort-drivers.git # Build and install the HailoRT driver cd hailort-drivers/linux/pcie