Docker: Disable SIRIUS for psmp to workaround COSMA performance issue

This commit is contained in:
Ole Schütt 2026-01-04 21:04:37 +01:00 committed by Ole Schütt
parent ec136938e7
commit 71983cdebc

View file

@ -91,12 +91,15 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "sdbg" ]]; then
CMAKE_EXIT_CODE=$?
elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "psmp" ]]; then
# TODO Re-enable SIRIUS once performance regression of COSMA is fixed:
# https://github.com/cp2k/cp2k/issues/4663
cmake \
-GNinja \
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
-DCP2K_USE_EVERYTHING=ON \
-DCP2K_USE_DLAF=OFF \
-DCP2K_USE_PEXSI=OFF \
-DCP2K_USE_SIRIUS=OFF \
-Werror=dev \
.. |& tee ./cmake.log
CMAKE_EXIT_CODE=$?