Skip to content

Commit

Permalink
docker: fix vpl gpu runtime component build after rename
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Rogozhkin <[email protected]>
  • Loading branch information
dvrogozh committed Apr 17, 2024
1 parent c14a6d1 commit 38a1344
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docker/ubuntu20.04/selfbuild-prodkmd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ RUN apt-get update && \
cmake \
make && \
rm -rf /var/lib/apt/lists/*
ARG ONEVPLGPU_REPO=https://github.com/oneapi-src/oneVPL-intel-gpu/archive/intel-onevpl-22.6.1.tar.gz
ARG ONEVPLGPU_REPO=https://github.com/intel/vpl-gpu-rt/archive/intel-onevpl-22.6.1.tar.gz
RUN cd /opt/build && \
wget -O - ${ONEVPLGPU_REPO} | tar xz
# build oneVPL gpu
RUN cd /opt/build/oneVPL-intel-gpu-intel-onevpl-22.6.1 && \
RUN cd /opt/build/vpl-gpu-rt-intel-onevpl-22.6.1 && \
mkdir -p _build && cd _build && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu20.04/selfbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ RUN apt-get update && \
cmake \
make && \
rm -rf /var/lib/apt/lists/*
ARG ONEVPLGPU_REPO=https://github.com/oneapi-src/oneVPL-intel-gpu/archive/intel-onevpl-22.6.1.tar.gz
ARG ONEVPLGPU_REPO=https://github.com/intel/vpl-gpu-rt/archive/intel-onevpl-22.6.1.tar.gz
RUN cd /opt/build && \
wget -O - ${ONEVPLGPU_REPO} | tar xz
# build oneVPL gpu
RUN cd /opt/build/oneVPL-intel-gpu-intel-onevpl-22.6.1 && \
RUN cd /opt/build/vpl-gpu-rt-intel-onevpl-22.6.1 && \
mkdir -p _build && cd _build && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
Expand Down
6 changes: 3 additions & 3 deletions templates/m4docker/components/onevpl-gpu.m4
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ define(`ONEVPLGPU_BUILD_DEPS',`ca-certificates gcc g++ wget pkg-config cmake mak
')

define(`BUILD_ONEVPLGPU',
ARG ONEVPLGPU_REPO=https://github.com/oneapi-src/oneVPL-intel-gpu/archive/intel-onevpl-ONEVPL_GPU_VER.tar.gz
ARG ONEVPLGPU_REPO=https://github.com/intel/vpl-gpu-rt/archive/intel-onevpl-ONEVPL_GPU_VER.tar.gz
RUN cd BUILD_HOME && \
wget -O - ${ONEVPLGPU_REPO} | tar xz
ifdef(`ONEVPLGPU_PATCH_PATH',`PATCH(BUILD_HOME/oneVPL-intel-gpu-intel-onevpl-ONEVPL_GPU_VER,ONEVPLGPU_PATCH_PATH)')dnl
ifdef(`ONEVPLGPU_PATCH_PATH',`PATCH(BUILD_HOME/vpl-gpu-rt-intel-onevpl-ONEVPL_GPU_VER,ONEVPLGPU_PATCH_PATH)')dnl
# build oneVPL gpu
RUN cd BUILD_HOME/oneVPL-intel-gpu-intel-onevpl-ONEVPL_GPU_VER && \
RUN cd BUILD_HOME/vpl-gpu-rt-intel-onevpl-ONEVPL_GPU_VER && \
mkdir -p _build && cd _build && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
Expand Down

0 comments on commit 38a1344

Please sign in to comment.