-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI for Intel (fails because oneMKL missing)
- Loading branch information
Yuuichi Asahi
committed
Jan 17, 2024
1 parent
92c0ad3
commit 9e1290a
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
ARG BASE=nvidia/cuda:11.7.1-devel-ubuntu22.04 | ||
FROM $BASE | ||
|
||
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
bc \ | ||
wget \ | ||
ccache \ | ||
ninja-build \ | ||
python3 \ | ||
git \ | ||
libfftw3-dev \ | ||
libomp-dev \ | ||
&& \ | ||
apt-get clean && \ | ||
git config --global --add safe.directory '*' && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN KEYDUMP_URL=https://cloud.cees.ornl.gov/download && \ | ||
KEYDUMP_FILE=keydump && \ | ||
wget --quiet ${KEYDUMP_URL}/${KEYDUMP_FILE} && \ | ||
wget --quiet ${KEYDUMP_URL}/${KEYDUMP_FILE}.sig && \ | ||
gpg --import ${KEYDUMP_FILE} && \ | ||
gpg --verify ${KEYDUMP_FILE}.sig ${KEYDUMP_FILE} && \ | ||
rm ${KEYDUMP_FILE}* | ||
|
||
ARG CMAKE_VERSION=3.23.2 | ||
ARG build_dir=/tmp/build | ||
|
||
ENV CMAKE_DIR=/opt/cmake | ||
RUN CMAKE_SCRIPT=cmake-${CMAKE_VERSION}-linux-x86_64.sh && \ | ||
mkdir -p ${build_dir} && mkdir -p ${CMAKE_DIR} \ | ||
cd ${build_dir} && \ | ||
wget https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_SCRIPT} && \ | ||
sh ${CMAKE_SCRIPT} --skip-license --prefix=${CMAKE_DIR} && \ | ||
cd ${HOME} && rm -rf ${build_dir} | ||
ENV PATH=${CMAKE_DIR}/bin:$PATH | ||
|
||
RUN wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB && \ | ||
apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB && \ | ||
echo "deb https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list && \ | ||
apt-get update -o Dir::Etc::sourcelist="sources.list.d/oneAPI.list" -o APT::Get::List-Cleanup="0" && \ | ||
apt-get install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-2023.0.0 && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN wget https://cloud.cees.ornl.gov/download/oneapi-for-nvidia-gpus-2023.0.0-linux.sh && \ | ||
chmod +x oneapi-for-nvidia-gpus-2023.0.0-linux.sh && \ | ||
./oneapi-for-nvidia-gpus-2023.0.0-linux.sh -y && \ | ||
rm oneapi-for-nvidia-gpus-2023.0.0-linux.sh | ||
|
||
RUN wget https://registrationcenter-download.intel.com/akdlm/irc_nas/19133/l_oneDPL_p_2022.0.0.25335.sh &&\ | ||
chmod +x ./l_oneDPL_p_2022.0.0.25335.sh && \ | ||
./l_oneDPL_p_2022.0.0.25335.sh -a -s --eula accept && \ | ||
rm l_oneDPL_p_2022.0.0.25335.sh | ||
|
||
WORKDIR /work | ||
ENV FFTWDIR "/usr" | ||
RUN . /opt/intel/oneapi/setvars.sh --include-intel-llvm | ||
ENV PATH=${CMAKE_DIR}/bin:/opt/intel/oneapi/compiler/latest/linux/bin:$PATH | ||
CMD ["bash"] |