mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-27 21:55:16 -04:00
Docker: Disable tblite until dftd4 installation is fixed
This commit is contained in:
parent
b060210385
commit
b2e41f9e62
35 changed files with 110 additions and 0 deletions
|
|
@ -74,6 +74,7 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "pdbg" ]]; then
|
|||
-DCP2K_USE_EVERYTHING=ON \
|
||||
-DCP2K_USE_DLAF=OFF \
|
||||
-DCP2K_USE_PEXSI=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -85,6 +86,7 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "sdbg" ]]; then
|
|||
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
|
||||
-DCP2K_USE_EVERYTHING=ON \
|
||||
-DCP2K_USE_MPI=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -96,6 +98,7 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "psmp" ]]; then
|
|||
-DCP2K_USE_EVERYTHING=ON \
|
||||
-DCP2K_USE_DLAF=OFF \
|
||||
-DCP2K_USE_PEXSI=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -106,6 +109,7 @@ elif [[ "${PROFILE}" == "toolchain" ]] && [[ "${VERSION}" == "ssmp" ]]; then
|
|||
-DCMAKE_INSTALL_PREFIX="${INSTALL_PREFIX}" \
|
||||
-DCP2K_USE_EVERYTHING=ON \
|
||||
-DCP2K_USE_MPI=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -120,6 +124,7 @@ elif [[ "${PROFILE}" == "toolchain_arm64" ]] && [[ "${VERSION}" == "psmp" ]]; th
|
|||
-DCP2K_USE_ACE=OFF \
|
||||
-DCP2K_USE_DEEPMD=OFF \
|
||||
-DCP2K_USE_LIBTORCH=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -160,6 +165,7 @@ elif [[ "${PROFILE}" == "toolchain_generic" ]] && [[ "${VERSION}" == "psmp" ]];
|
|||
-DCP2K_USE_EVERYTHING=ON \
|
||||
-DCP2K_USE_DLAF=OFF \
|
||||
-DCP2K_USE_PEXSI=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -172,6 +178,7 @@ elif [[ "${PROFILE}" == "toolchain_coverage" ]] && [[ "${VERSION}" == "psmp" ]];
|
|||
-DCP2K_USE_EVERYTHING=ON \
|
||||
-DCP2K_USE_DLAF=OFF \
|
||||
-DCP2K_USE_PEXSI=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
@ -187,6 +194,7 @@ elif [[ "${PROFILE}" == "toolchain_asan" ]] && [[ "${VERSION}" == "psmp" ]]; the
|
|||
-DCP2K_USE_DLAF=OFF \
|
||||
-DCP2K_USE_PEXSI=OFF \
|
||||
-DCP2K_USE_GREENX=OFF \
|
||||
-DCP2K_USE_TBLITE=OFF \
|
||||
-Werror=dev \
|
||||
.. |& tee ./cmake.log
|
||||
CMAKE_EXIT_CODE=$?
|
||||
|
|
|
|||
|
|
@ -35,11 +35,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--mpi-mode=mpich \
|
||||
--enable-hip=yes \
|
||||
--gpu-ver=Mi100 \
|
||||
--with-dbcsr=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -35,11 +35,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--mpi-mode=mpich \
|
||||
--enable-hip=yes \
|
||||
--gpu-ver=Mi50 \
|
||||
--with-dbcsr=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
|
|
@ -27,6 +29,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-gcc=system \
|
||||
--with-libtorch=no \
|
||||
--with-deepmd=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr=no \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -33,11 +33,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--with-mpich=install \
|
||||
--mpi-mode=mpich \
|
||||
--enable-cuda=yes \
|
||||
--gpu-ver=A100 \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -33,11 +33,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--with-mpich=install \
|
||||
--mpi-mode=mpich \
|
||||
--enable-cuda=yes \
|
||||
--gpu-ver=P100 \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -33,11 +33,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--with-mpich=install \
|
||||
--mpi-mode=mpich \
|
||||
--enable-cuda=yes \
|
||||
--gpu-ver=V100 \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -38,6 +38,8 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--mpi-mode=no \
|
||||
--with-gcc=system \
|
||||
|
|
@ -53,6 +55,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libxsmm=install \
|
||||
--with-libvori=install \
|
||||
--with-spglib=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,12 +20,15 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--target-cpu=generic \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -35,11 +35,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--mpi-mode=mpich \
|
||||
--enable-hip=yes \
|
||||
--gpu-ver=Mi100 \
|
||||
--with-dbcsr=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -35,11 +35,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--mpi-mode=mpich \
|
||||
--enable-hip=yes \
|
||||
--gpu-ver=Mi50 \
|
||||
--with-dbcsr=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--with-dbcsr=no \
|
||||
|
|
@ -29,6 +31,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libsmeagol \
|
||||
--with-libtorch=no \
|
||||
--with-deepmd=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--with-dbcsr=no \
|
||||
|
|
@ -29,6 +31,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libsmeagol \
|
||||
--with-libtorch=no \
|
||||
--with-deepmd=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--with-dbcsr=no \
|
||||
|
|
@ -29,6 +31,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libsmeagol \
|
||||
--with-libtorch=no \
|
||||
--with-deepmd=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,6 +20,8 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--with-dbcsr=no \
|
||||
|
|
@ -29,6 +31,7 @@ RUN ./install_cp2k_toolchain.sh \
|
|||
--with-libsmeagol \
|
||||
--with-libtorch=no \
|
||||
--with-deepmd=no \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=openmpi \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -33,11 +33,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--with-mpich=install \
|
||||
--mpi-mode=mpich \
|
||||
--enable-cuda=yes \
|
||||
--gpu-ver=A100 \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -33,11 +33,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--with-mpich=install \
|
||||
--mpi-mode=mpich \
|
||||
--enable-cuda=yes \
|
||||
--gpu-ver=P100 \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -33,11 +33,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--with-mpich=install \
|
||||
--mpi-mode=mpich \
|
||||
--enable-cuda=yes \
|
||||
--gpu-ver=V100 \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -20,11 +20,14 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
|
|
@ -624,8 +624,11 @@ COPY ./tools/toolchain/scripts/VERSION \
|
|||
./tools/toolchain/scripts/get_openblas_arch.sh \
|
||||
./scripts/
|
||||
COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
||||
# TODO: Re-enable tblite once the dftd4 installation is fixed.
|
||||
# https://github.com/cp2k/cp2k/issues/4362
|
||||
RUN ./install_cp2k_toolchain.sh \
|
||||
{install_args_str}
|
||||
--with-tblite=no \
|
||||
--dry-run
|
||||
|
||||
# Dry-run leaves behind config files for the followup install scripts.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue