diff --git a/eb_hooks.py b/eb_hooks.py index 6c92d35819..b28b8ef45f 100644 --- a/eb_hooks.py +++ b/eb_hooks.py @@ -82,7 +82,7 @@ def post_ready_hook(self, *args, **kwargs): # 'parallel' easyconfig parameter is set via EasyBlock.set_parallel in ready step based on available cores. # here we reduce parallellism to only use half of that for selected software, # to avoid failing builds/tests due to out-of-memory problems - if self.name in ['Clang', 'TensorFlow', 'libxc']: + if self.name in ['Clang', 'libxc', 'TensorFlow']: parallel = self.cfg['parallel'] if parallel > 1: self.cfg['parallel'] = parallel // 2