1- FROM nvidia/cuda:12.9 .1-cudnn-devel-ubuntu24.04
1+ FROM nvidia/cuda:13.1 .1-cudnn-devel-ubuntu24.04
22LABEL 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
55SHELL ["/bin/bash" , "-c" ]
66
@@ -12,6 +12,7 @@ ENV BOOST_ROOT=/usr/include/boost
1212ENV PATH=$CUDA_INSTALL_PATH/bin:$PATH
1313
1414ENV GPUAPPS_ROOT=/accel-sim/gpu-app-collection
15+ ARG GPU_APP_COLLECTION_BRANCH=dev
1516
1617RUN 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
2728RUN 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