Skip to content

Commit 88ed16c

Browse files
committed
update configs to latest release
1 parent 67eefa1 commit 88ed16c

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ RUN /bin/bash -c -o pipefail \
6060
"source /opt/venv/bin/activate && \
6161
pip install --no-cache-dir pyfftw colorcet wandb pandas plotly plumed 'numpy<2.0.0' && \
6262
pip install --no-cache-dir git+https://github.com/i-pi/[email protected] && \
63-
pip install --no-cache-dir torch==2.1 --index-url https://download.pytorch.org/whl/${GPU_LIBRARY} && \
63+
pip install --no-cache-dir torch>=2.5 --index-url https://download.pytorch.org/whl/${GPU_LIBRARY} && \
6464
pip install --no-cache-dir git+https://github.com/acesuit/[email protected]"
6565
ARG DATE
6666
RUN /bin/bash -c -o pipefail \

build_containers.sh

+3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,12 @@ if [ "$psiflow" = "true" ]; then
5959
-t ghcr.io/molmod/$TAG \
6060
-f Dockerfile . # test
6161
if [ "$build_sif" = "true" ]; then
62+
export TMPDIR=$(pwd)/tmp
63+
mkdir -p $TMPDIR
6264
apptainer build -F $TAG.sif docker-daemon:ghcr.io/molmod/$TAG
6365
apptainer push $TAG.sif oras://ghcr.io/molmod/$TAG
6466
rm $TAG.sif
67+
rm -rf $TMPDIR
6568
fi
6669
done
6770
fi

configs/hortense.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
parsl_log_level: WARNING
33
container_engine: 'apptainer'
4-
container_uri: 'oras://ghcr.io/molmod/psiflow:4.0.0-rc0_cu118'
4+
container_uri: 'oras://ghcr.io/molmod/psiflow:4.0.0_cu118'
55
default_threads: 8
66
ModelEvaluation:
77
cores_per_worker: 12

configs/lumi.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
parsl_log_level: WARNING
33
container_engine: 'singularity'
4-
container_uri: 'oras://ghcr.io/molmod/psiflow:4.0.0-rc0_rocm5.6'
4+
container_uri: 'oras://ghcr.io/molmod/psiflow:4.0.0_rocm6.2'
55
default_threads: 8
66
CP2K:
77
cores_per_worker: 32
@@ -25,7 +25,6 @@ ModelEvaluation:
2525
max_blocks: 10
2626
walltime: "01:00:00"
2727
scheduler_options: "#SBATCH --gres=gpu:8\n"
28-
worker_init: "ml LUMI/23.09 && ml partition/G && ml rocm/5.6\n"
2928
ModelTraining:
3029
cores_per_worker: 7
3130
gpu: true
@@ -37,5 +36,4 @@ ModelTraining:
3736
cores_per_node: 56
3837
walltime: "01:00:00"
3938
scheduler_options: "#SBATCH --gres=gpu:8\n"
40-
worker_init: "ml LUMI/23.09 && ml partition/G && ml rocm/5.6\n"
4139
...

0 commit comments

Comments
 (0)