-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a base nvcc Docker image from Kokkos
- Loading branch information
Showing
5 changed files
with
64 additions
and
36 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,43 @@ | ||
ARG BASE=nvidia/cuda:12.3.1-devel-ubuntu20.04 | ||
FROM $BASE | ||
|
||
ARG ADDITIONAL_PACKAGES | ||
|
||
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
bc \ | ||
wget \ | ||
ccache \ | ||
libfftw3-dev \ | ||
$ADDITIONAL_PACKAGES \ | ||
&& \ | ||
apt-get clean && \ | ||
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 | ||
ENV CMAKE_DIR=/opt/cmake | ||
RUN CMAKE_URL=https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION} && \ | ||
CMAKE_SCRIPT=cmake-${CMAKE_VERSION}-Linux-x86_64.sh && \ | ||
CMAKE_SHA256=cmake-${CMAKE_VERSION}-SHA-256.txt && \ | ||
wget --quiet ${CMAKE_URL}/${CMAKE_SHA256} && \ | ||
wget --quiet ${CMAKE_URL}/${CMAKE_SHA256}.asc && \ | ||
wget --quiet ${CMAKE_URL}/${CMAKE_SCRIPT} && \ | ||
gpg --verify ${CMAKE_SHA256}.asc ${CMAKE_SHA256} && \ | ||
grep -i ${CMAKE_SCRIPT} ${CMAKE_SHA256} | sed -e s/linux/Linux/ | sha256sum --check && \ | ||
mkdir -p ${CMAKE_DIR} && \ | ||
sh ${CMAKE_SCRIPT} --skip-license --prefix=${CMAKE_DIR} && \ | ||
rm cmake* | ||
ENV PATH=${CMAKE_DIR}/bin:$PATH | ||
|
||
WORKDIR /work | ||
ENV FFTWDIR "/usr" | ||
CMD ["bash"] |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
ARG BASE=ghcr.io/cexa-project/kokkos-fft/base_cuda | ||
FROM $BASE | ||
|
||
ARG BUILD_DIR=./build | ||
COPY $BUILD_DIR /work/build | ||
|
||
WORKDIR /work/build |