File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,17 @@ df -h
2828# Install and reduce disk space
2929# https://github.com/ECP-WarpX/WarpX/pull/1566#issuecomment-790934878
3030
31+ apt-cache policy intel-oneapi-mkl-devel
32+
3133# try apt install up to five times, to avoid connection splits
3234status=1
3335for itry in {1..5}
3436do
3537 sudo apt-get install -y --no-install-recommends \
3638 build-essential \
3739 cmake \
38- intel-oneapi-compiler-dpcpp-cpp intel-oneapi-mkl-devel \
40+ intel-oneapi-compiler-dpcpp-cpp=2024.2.1-1079 \
41+ intel-oneapi-mkl-devel \
3942 g++ gfortran \
4043 libopenmpi-dev \
4144 openmpi-bin \
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ jobs:
112112 set +e
113113 source /opt/intel/oneapi/setvars.sh
114114 set -e
115+ export PATH=$PATH:/opt/intel/oneapi/compiler/2024.2/bin # FIXME
115116 export CXX=$(which icpx)
116117 export CC=$(which icx)
117118
@@ -176,6 +177,7 @@ jobs:
176177 set +e
177178 source /opt/intel/oneapi/setvars.sh
178179 set -e
180+ export PATH=$PATH:/opt/intel/oneapi/compiler/2024.2/bin # FIXME
179181 export CXX=$(which icpx)
180182 export CC=$(which icx)
181183 export CXXFLAGS="-fsycl ${CXXFLAGS}"
You can’t perform that action at this time.
0 commit comments