From f56269ac7792057dbe6f0c7f6c01cac32b9cc5ed Mon Sep 17 00:00:00 2001 From: mrukavishnikov Date: Wed, 25 Sep 2024 18:30:45 +0300 Subject: [PATCH 1/2] Update user_installation.sh --- docker/hailo8l/user_installation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/hailo8l/user_installation.sh b/docker/hailo8l/user_installation.sh index 0f40bbaac..9f2f0aca6 100644 --- a/docker/hailo8l/user_installation.sh +++ b/docker/hailo8l/user_installation.sh @@ -13,7 +13,7 @@ else fi # Clone the HailoRT driver repository -git clone --depth 1 --branch v4.17.0 https://github.com/hailo-ai/hailort-drivers.git +git clone --depth 1 --branch v4.18.0 https://github.com/hailo-ai/hailort-drivers.git # Build and install the HailoRT driver cd hailort-drivers/linux/pcie From fe8311912c2f60ce32e1a390b77e263accbc4fcf Mon Sep 17 00:00:00 2001 From: mrukavishnikov Date: Wed, 25 Sep 2024 18:32:35 +0300 Subject: [PATCH 2/2] Update Dockerfile --- docker/hailo8l/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/hailo8l/Dockerfile b/docker/hailo8l/Dockerfile index 391f6f541..479ef9b27 100644 --- a/docker/hailo8l/Dockerfile +++ b/docker/hailo8l/Dockerfile @@ -50,7 +50,7 @@ RUN PYTHON_VERSION=$(python3 --version 2>&1 | awk '{print $2}' | cut -d. -f1,2) RUN . /etc/environment && \ git clone https://github.com/hailo-ai/hailort.git /opt/hailort && \ cd /opt/hailort && \ - git checkout v4.17.0 && \ + git checkout v4.18.0 && \ cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release -DHAILO_BUILD_PYBIND=1 -DPYBIND11_PYTHON_VERSION=${PYTHON_VERSION} && \ cmake --build build --config release --target libhailort && \ cmake --build build --config release --target _pyhailort && \ @@ -91,7 +91,7 @@ RUN pip3 install -U /deps/hailo-wheels/*.whl RUN . /etc/environment && \ mv /usr/local/lib/python${PYTHON_VERSION}/dist-packages/hailo_platform/pyhailort/libhailort.so /usr/lib/${CC} && \ cd /usr/lib/${CC}/ && \ - ln -s libhailort.so libhailort.so.4.17.0 + ln -s libhailort.so libhailort.so.4.18.0 # Copy base files from the rootfs stage COPY --from=rootfs / /