From 43671fbb972738521ed679c9594a34ed26fc8125 Mon Sep 17 00:00:00 2001 From: Sander Vandenhaute <45051541+svandenhaute@users.noreply.github.com> Date: Wed, 17 Jan 2024 09:29:56 +0100 Subject: [PATCH] Create lumi.yaml --- configs/lumi.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 configs/lumi.yaml diff --git a/configs/lumi.yaml b/configs/lumi.yaml new file mode 100644 index 0000000..605227f --- /dev/null +++ b/configs/lumi.yaml @@ -0,0 +1,30 @@ +--- +ModelEvaluation: + cores_per_worker: 7 + simulation_engine: 'yaff' + SlurmProvider: + partition: "dev-g" + account: "project_*" + nodes_per_block: 1 + cores_per_node: 7 + init_blocks: 0 + max_blocks: 20 + walltime: "00:30:00" + exclusive: false + scheduler_options: "#SBATCH --gres=gpu:1\n" + worker_init: "ml rocm/5.2.3\n" +ModelTraining: + cores_per_worker: 7 + gpu: true + SlurmProvider: + partition: "dev-g" + account: "project_*" + nodes_per_block: 1 + cores_per_node: 7 + init_blocks: 0 + max_blocks: 20 + walltime: "00:30:00" + exclusive: false + scheduler_options: "#SBATCH --gres=gpu:1\n" + worker_init: "ml rocm/5.2.3\n" +...