mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 22:25:32 -04:00
Fix argument value
This commit is contained in:
parent
886ae675a1
commit
214901717e
3 changed files with 4 additions and 4 deletions
|
|
@ -23,7 +23,7 @@ COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
|||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=mpich \
|
||||
--with-dbcsr=yes \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--dry-run
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ COPY ./tools/toolchain/install_cp2k_toolchain.sh .
|
|||
RUN ./install_cp2k_toolchain.sh \
|
||||
--install-all \
|
||||
--mpi-mode=no \
|
||||
--with-dbcsr=yes \
|
||||
--with-dbcsr \
|
||||
--with-gcc=system \
|
||||
--dry-run
|
||||
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@ def main() -> None:
|
|||
if version in ("ssmp", "psmp"):
|
||||
# Use ssmp/psmp as guinea pigs
|
||||
if version == "ssmp":
|
||||
f.write(install_deps_toolchain(mpi_mode="no", with_dbcsr="yes"))
|
||||
f.write(install_deps_toolchain(mpi_mode="no", with_dbcsr=""))
|
||||
elif version == "psmp":
|
||||
f.write(install_deps_toolchain(mpi_mode="mpich", with_dbcsr="yes"))
|
||||
f.write(install_deps_toolchain(mpi_mode="mpich", with_dbcsr=""))
|
||||
f.write(regtest_cmake("toolchain", version))
|
||||
else:
|
||||
if version == "sdbg":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue