diff --git a/src/helpers.py b/src/helpers.py index df234b3c2e621a7ab93d19de8777864720522e40..4a6b1b2f657c1cd8eb375489e1cbcc0365b1bde5 100644 --- a/src/helpers.py +++ b/src/helpers.py @@ -130,7 +130,7 @@ def prepare_host(create_new=True, sampling="daily"): path = f"/home/{user}/machinelearningtools/data/toar_{sampling}/" elif (len(hostname) > 2) and (hostname[:2] == "jr"): path = f"/p/project/cjjsc42/{user}/DATA/toar_{sampling}/" - elif (len(hostname) > 2) and (hostname[:2] in ['jw', 'ju']): + elif (len(hostname) > 2) and (hostname[:2] in ['jw', 'ju'] or hostname[:5] in ['hdfml']): path = f"/p/project/deepacf/intelliaq/{user}/DATA/toar_{sampling}/" elif runner_regex.match(hostname) is not None: path = f"/home/{user}/machinelearningtools/data/toar_{sampling}/" diff --git a/src/run_modules/experiment_setup.py b/src/run_modules/experiment_setup.py index 278a481f80038a49829c00e99a156c12f461b985..267b6c66b297ecf16db044619b7f8880da727f57 100644 --- a/src/run_modules/experiment_setup.py +++ b/src/run_modules/experiment_setup.py @@ -25,8 +25,8 @@ DEFAULT_TRANSFORMATION = {"scope": "data", "method": "standardise", "mean": "est DEFAULT_PLOT_LIST = ["PlotMonthlySummary", "PlotStationMap", "PlotClimatologicalSkillScore", "PlotTimeSeries", "PlotCompetitiveSkillScore", "PlotBootstrapSkillScore", "PlotConditionalQuantiles", "PlotAvailability"] -DEFAULT_HPC_LOGIN_LIST = ["ju"] -DEFAULT_HPC_HOST_LIST = ["jw", "jr"] # first part of node names for Juwels (jw[comp], ju[login]) and Jureca(jr). +DEFAULT_HPC_LOGIN_LIST = ["ju", "hdfmll"] +DEFAULT_HPC_HOST_LIST = ["jw", "jr", "hdfmlc"] # first part of node names for Juwels (jw[comp], ju[login]) and Jureca(jr). class ExperimentSetup(RunEnvironment):