Skip to content

Commit

Permalink
chore: rename motionphotos to kebab-case and add new assets (#5)
Browse files Browse the repository at this point in the history
fix: install opencl from github releases directly to pin versions
  • Loading branch information
zackpollard committed Aug 15, 2024
1 parent a450675 commit ec0fac6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/test-assets
13 changes: 11 additions & 2 deletions machine-learning/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,17 @@ FROM prod-cpu AS prod-openvino
COPY scripts/configure-apt.sh ./
RUN ./configure-apt.sh && \
apt-get update && \
apt-get install -t unstable --no-install-recommends -yqq intel-opencl-icd && \
rm configure-apt.sh
apt-get install --no-install-recommends -yqq ocl-icd-libopencl1 wget && \
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17193.4/intel-igc-core_1.0.17193.4_amd64.deb && \
wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.17193.4/intel-igc-opencl_1.0.17193.4_amd64.deb && \
wget https://github.com/intel/compute-runtime/releases/download/24.26.30049.6/intel-opencl-icd-dbgsym_24.26.30049.6_amd64.ddeb ./intel-opencl-icd-dbgsym_24.26.30049.6_amd64.ddeb && \
wget https://github.com/intel/compute-runtime/releases/download/24.26.30049.6/intel-opencl-icd_24.26.30049.6_amd64.deb ./intel-opencl-icd_24.26.30049.6_amd64.deb && \
wget https://github.com/intel/compute-runtime/releases/download/24.26.30049.6/libigdgmm12_22.3.20_amd64.deb ./libigdgmm12_22.3.20_amd64.deb && \
dpkg -i *.deb && \
rm *.dev && \
rm configure-apt.sh && \
apt-get remove wget && \
rm -rf /var/lib/apt/lists/*

FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04@sha256:fa44193567d1908f7ca1f3abf8623ce9c63bc8cba7bcfdb32702eb04d326f7a8 AS prod-cuda

Expand Down

0 comments on commit ec0fac6

Please sign in to comment.