-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tweak execution setup to accomodate multiple levels of theory
- Loading branch information
1 parent
9dde204
commit dc1b0e6
Showing
7 changed files
with
147 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,37 @@ | ||
--- | ||
container: | ||
engine: "apptainer" | ||
uri: "oras://ghcr.io/molmod/psiflow:develop_python3.10_cuda" | ||
ModelEvaluation: | ||
cores_per_worker: 12 | ||
gpu: True | ||
max_simulation_time: 20 | ||
SlurmProvider: | ||
slurm: | ||
partition: "gpu_rome_a100" | ||
account: "2023_070" | ||
nodes_per_block: 1 # each block fits on (less than) one node | ||
cores_per_node: 48 # number of cores per slurm job | ||
init_blocks: 0 # initialize a block at the start of the workflow | ||
max_blocks: 1 # do not use more than one block | ||
walltime: "12:00:00" # walltime per block | ||
exclusive: false # rest of compute node free to use | ||
nodes_per_block: 1 | ||
cores_per_node: 48 | ||
max_blocks: 1 | ||
walltime: "12:00:00" | ||
scheduler_options: "#SBATCH --clusters=dodrio\n#SBATCH --gpus=4\n" | ||
ModelTraining: | ||
cores_per_worker: 12 | ||
gpu: true | ||
max_training_time: 40 | ||
SlurmProvider: | ||
slurm: | ||
partition: "gpu_rome_a100" | ||
account: "2023_070" | ||
nodes_per_block: 1 | ||
cores_per_node: 12 | ||
init_blocks: 0 | ||
max_blocks: 1 | ||
walltime: "12:00:00" | ||
exclusive: false | ||
scheduler_options: "#SBATCH --clusters=dodrio\n#SBATCH --gpus=1\n" | ||
ReferenceEvaluation: | ||
CP2K: | ||
cores_per_worker: 64 | ||
max_evaluation_time: 30 | ||
SlurmProvider: | ||
slurm: | ||
partition: "cpu_rome" | ||
account: "starting_2024_030" | ||
nodes_per_block: 1 | ||
cores_per_node: 64 | ||
init_blocks: 0 | ||
min_blocks: 0 | ||
max_blocks: 50 | ||
walltime: "06:00:00" | ||
exclusive: false | ||
scheduler_options: "#SBATCH --clusters=dodrio\n" | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.