Skip to content

Commit b615937

Browse files
committed
Fiddling with Dockerfile
1 parent 49b44d9 commit b615937

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Dockerfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,20 @@ RUN cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENM
4444
ctest -T test --output-on-failure
4545

4646
## TODO: Fix compilation issue with OpenMP 5.1 atomic support
47-
##FROM ghcr.io/llnl/radiuss:intel-2024.0-ubuntu-20.04 AS intel2024
48-
##ENV GTEST_COLOR=1
49-
##COPY . /home/raja/workspace
50-
##WORKDIR /home/raja/workspace/build
51-
##RUN /bin/bash -c "source /opt/intel/oneapi/setvars.sh 2>&1 > /dev/null && \
52-
## cmake -DCMAKE_CXX_COMPILER=icpx -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENMP=On .. && \
53-
## make -j 16"
47+
FROM ghcr.io/llnl/radiuss:intel-2024.0-ubuntu-20.04 AS intel2024
48+
ENV GTEST_COLOR=1
49+
COPY . /home/raja/workspace
50+
WORKDIR /home/raja/workspace/build
51+
RUN /bin/bash -c "source /opt/intel/oneapi/setvars.sh 2>&1 > /dev/null && \
52+
cmake -DCMAKE_CXX_COMPILER=icpx -DCMAKE_BUILD_TYPE=Release -DENABLE_OPENMP=On .. && \
53+
make -j 16"
5454

5555
FROM ghcr.io/llnl/radiuss:ubuntu-22.04-cuda-12-3 AS cuda12.3
5656
ENV GTEST_COLOR=1
5757
COPY . /home/raja/workspace
5858
WORKDIR /home/raja/workspace/build
5959
RUN cmake -DCMAKE_CXX_COMPILER=g++ -DENABLE_CUDA=On -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc -DCMAKE_CUDA_STANDARD=14 -DCMAKE_CUDA_ARCHITECTURES=70 .. && \
60-
make -j 16
60+
make -j 8
6161

6262
# TODO: Switch to ROCM 6 -- issues building image
6363
FROM ghcr.io/llnl/radiuss:hip-5.6.1-ubuntu-20.04 AS hip5.6

0 commit comments

Comments
 (0)