Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
2 changed files with 20 additions and 2 deletions
Showing only changes of commit 203dc9f295 - Show all commits

View File

@@ -45,6 +45,7 @@ let
# Resources
qos = "debug";
ntasksPerNode = hw.socketsPerNode;
cpusPerTask = hw.cpusPerSocket;
inherit (c.input) time nodes;
jobName = unitName;
};
@@ -54,6 +55,14 @@ let
inherit varConf genConf;
};
# Use nanos6 with regions
nanos6Env = {nextStage, conf, ...}: with conf; stages.exec {
inherit nextStage;
env = ''
export NANOS6_CONFIG_OVERRIDE="version.dependencies=regions"
'';
};
# Custom stage to copy the creams input dataset
copyInput = {nextStage, conf, ...}:
let
@@ -78,7 +87,7 @@ let
inherit cc mpi gitBranch;
};
pipeline = stdexp.stdPipeline ++ [ copyInput creams ];
pipeline = stdexp.stdPipeline ++ [ nanos6Env copyInput creams ];
in

View File

@@ -38,6 +38,7 @@ let
# Resources
qos = "debug";
ntasksPerNode = hw.cpusPerNode;
cpusPerTask = 1;
inherit (c.input) time nodes;
jobName = unitName;
};
@@ -47,6 +48,14 @@ let
inherit varConf genConf;
};
# Use nanos6 with regions
nanos6Env = {nextStage, conf, ...}: with conf; stages.exec {
inherit nextStage;
env = ''
export NANOS6_CONFIG_OVERRIDE="version.dependencies=regions"
'';
};
# Custom stage to copy the creams input dataset
copyInput = {nextStage, conf, ...}:
let
@@ -71,7 +80,7 @@ let
inherit cc mpi gitBranch;
};
pipeline = stdexp.stdPipeline ++ [ copyInput creams ];
pipeline = stdexp.stdPipeline ++ [ nanos6Env copyInput creams ];
in