Skip to content

Commit f9e3bb5

Browse files
authored
Merge pull request #11 from SamThe602/Ubuntu-24.04-cuda-13.1.1-minimal
Ubuntu 24.04 cuda 13.1.1 minimal
2 parents a3d4787 + 1f1344f commit f9e3bb5

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM nvidia/cuda:12.9.1-cudnn-devel-ubuntu24.04
1+
FROM nvidia/cuda:13.1.1-cudnn-devel-ubuntu24.04
22
LABEL org.opencontainers.image.source=https://github.com/accel-sim/Dockerfile/
3-
LABEL org.opencontainers.image.description="Accel-Sim container with Ubuntu 24.04 with CUDA 12.8.0 and CUDNN, for CI runs only"
3+
LABEL org.opencontainers.image.description="Accel-Sim container with Ubuntu 24.04 with CUDA 13.1.1 and CUDNN, for CI runs only"
44

55
SHELL ["/bin/bash", "-c"]
66

@@ -12,6 +12,7 @@ ENV BOOST_ROOT=/usr/include/boost
1212
ENV PATH=$CUDA_INSTALL_PATH/bin:$PATH
1313

1414
ENV GPUAPPS_ROOT=/accel-sim/gpu-app-collection
15+
ARG GPU_APP_COLLECTION_BRANCH=dev
1516

1617
RUN apt-get update && apt-get install -y wget build-essential xutils-dev bison zlib1g-dev flex \
1718
libglu1-mesa-dev git g++ libssl-dev libxml2-dev libboost-all-dev git g++ \
@@ -27,7 +28,8 @@ RUN pip3 install --upgrade pip
2728
RUN pip3 install pyyaml plotly psutil
2829

2930
# For CI, only build the CI apps and pull the regression data
30-
# Clone the gpu-app-collection repository
31-
RUN git clone --recurse-submodules https://github.com/accel-sim/gpu-app-collection.git
31+
# Clone the gpu-app-collection repository.
32+
RUN git clone --recurse-submodules --branch ${GPU_APP_COLLECTION_BRANCH} --single-branch \
33+
https://github.com/accel-sim/gpu-app-collection.git
3234
# Build the CI apps and pull the regression data
33-
RUN cd gpu-app-collection && bash test-build.sh ci && bash get_regression_data.sh
35+
RUN cd gpu-app-collection && bash test-build.sh ci && bash get_regression_data.sh

0 commit comments

Comments
 (0)