Skip to content

Commit

Permalink
Don't load Singularity module in example experiment.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Sep 7, 2020
1 parent 62716d3 commit 8d2a989
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/singularity/singularity-exp.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ class BaseReport(AbsoluteReport):
email="my.name@unibas.ch",
memory_per_cpu="3872M",
export=["PATH"],
setup=BaselSlurmEnvironment.DEFAULT_SETUP
+ "\nmodule load Singularity/2.6.1 2> /dev/null",
setup=BaselSlurmEnvironment.DEFAULT_SETUP,
# Until recently, we had to load the Singularity module here
# by adding "module load Singularity/2.6.1 2> /dev/null".
)
TIME_LIMIT = 1800
else:
Expand Down Expand Up @@ -83,7 +84,7 @@ def get_image(name):
return planner, image


IMAGES = [get_image("lama-first")]
IMAGES = [get_image("fd1906-lama-first")]

for planner, image in IMAGES:
exp.add_resource(planner, image, symlink=True)
Expand Down

0 comments on commit 8d2a989

Please sign in to comment.