From 9de8f3f38054799ba28d063c3311c6acd9a72738 Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Mon, 26 Jun 2023 16:03:46 +0300 Subject: [PATCH] Revert "Add OPENBLAS_NUM_THREADS environment variable to limit the number of threads used by OpenBLAS library in Dockerfile" This reverts commit 2bc977a375486c7e68e787f2e2a822906b88509e. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a77036bfa..0c244f901 100644 --- a/Dockerfile +++ b/Dockerfile @@ -127,7 +127,7 @@ RUN apt-get -qq update \ libtbb2 libtbb-dev libdc1394-22-dev libopenexr-dev \ libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev \ # scipy dependencies - gcc gfortran libopenblas-dev libopenblas64-0 libopenblas64-dev liblapack-dev && \ + gcc gfortran libopenblas-dev liblapack-dev && \ rm -rf /var/lib/apt/lists/* RUN wget -q https://bootstrap.pypa.io/get-pip.py -O get-pip.py \ @@ -172,7 +172,6 @@ ENV NVIDIA_VISIBLE_DEVICES=all ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" ENV PATH="/usr/lib/btbn-ffmpeg/bin:/usr/local/go2rtc/bin:/usr/local/nginx/sbin:${PATH}" -ENV OPENBLAS_NUM_THREADS=1 # Install dependencies RUN --mount=type=bind,source=docker/install_deps.sh,target=/deps/install_deps.sh \