Revert "fix(Dockerfile): sycl dependencies" (#1687)

Revert "fix(Dockerfile): sycl dependencies (#1686)"

This reverts commit f76bb8954b.
This commit is contained in:
Ettore Di Giacinto 2024-02-06 20:48:29 +01:00 committed by GitHub
parent f76bb8954b
commit e23e490455
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 44 deletions

View file

@ -42,10 +42,7 @@ RUN if [ "${BUILD_TYPE}" = "cublas" ]; then \
RUN if [ "${BUILD_TYPE}" = "sycl_f16" ] || [ "${BUILD_TYPE}" = "sycl_f32" ]; then \
wget -q https://registrationcenter-download.intel.com/akdlm/IRC_NAS/163da6e4-56eb-4948-aba3-debcec61c064/l_BaseKit_p_2024.0.1.46_offline.sh && \
sh ./l_BaseKit_p_2024.0.1.46_offline.sh -a -s --eula accept && \
rm -rf l_BaseKit_p_2024.0.1.46_offline.sh && \
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null && \
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list && \
apt-get update && apt-get install -y intel-oneapi-runtime-opencl && apt-get clean \
rm -rf l_BaseKit_p_2024.0.1.46_offline.sh \
; fi
ENV PATH /usr/local/cuda/bin:${PATH}