From c2fa68b423caf008739839a8094f6a62445ddeca Mon Sep 17 00:00:00 2001 From: Caspar van Leeuwen Date: Mon, 31 Jul 2023 11:19:02 +0200 Subject: [PATCH] Updated config to match change in constants.py --- config/izum_vega.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/izum_vega.py b/config/izum_vega.py index 4baa40c4..6ac2558a 100644 --- a/config/izum_vega.py +++ b/config/izum_vega.py @@ -1,6 +1,6 @@ from os import environ, makedirs -from eessi.testsuite.constants import FEATURES, DEVICES +from eessi.testsuite.constants import * # Get username of current user homedir = environ.get('HOME') @@ -48,7 +48,7 @@ 'environs': ['default'], 'max_jobs': 120, 'features': [ - FEATURES['CPU'], + FEATURES[CPU], ], 'descr': 'CPU partition Standard, see https://en-doc.vega.izum.si/architecture/' }, @@ -72,7 +72,7 @@ 'max_jobs': 60, 'devices': [ { - 'type': DEVICES['GPU'], + 'type': DEVICE_TYPES[GPU], 'num_devices': 4, } ], @@ -83,7 +83,7 @@ } ], 'features': [ - FEATURES['GPU'], + FEATURES[GPU], ], 'descr': 'GPU partition, see https://en-doc.vega.izum.si/architecture/' },