Skip to content

Commit

Permalink
Docker: Remove popt from scaling test
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Jun 11, 2020
1 parent 2902a7c commit e15be0a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/docker/scripts/install_scaling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ source /opt/cp2k-toolchain/install/setup

# pre-build cp2k
cd /workspace/cp2k
for VERSION in 'popt' 'psmp' 'ssmp'; do
for VERSION in 'psmp' 'ssmp'; do
echo -n "Warming cache by trying to compile cp2k.${VERSION}... "
if make -j VERSION="${VERSION}" &> /dev/null ; then
echo 'done.'
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/scripts/test_scaling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source /opt/cp2k-toolchain/install/setup

echo -e '\n========== Compiling CP2K =========='
cd /workspace/cp2k
for VERSION in 'popt' 'psmp' 'ssmp' ; do
for VERSION in 'psmp' 'ssmp' ; do
echo -n "Compiling cp2k.${VERSION}... "
if make -j VERSION="${VERSION}" &> /dev/null ; then
echo 'done.'
Expand Down
1 change: 0 additions & 1 deletion tools/regtesting/test_scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def main():
ref_energies.append(float(rest_args.pop(0)))

configs = [
(8, 1, "popt"),
(8, 1, "psmp"),
(4, 2, "psmp"),
(2, 4, "psmp"),
Expand Down

0 comments on commit e15be0a

Please sign in to comment.