From 94e25447bf20e904055aacf2dd8ba37f1fad2af0 Mon Sep 17 00:00:00 2001 From: Tobias Melson <tobias.melson@mpcdf.mpg.de> Date: Thu, 4 May 2023 13:17:44 +0200 Subject: [PATCH] Support matching_mkl_version also for intel_x compilers --- mpcdf_common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mpcdf_common.py b/mpcdf_common.py index 67fc304..4d8f7dc 100644 --- a/mpcdf_common.py +++ b/mpcdf_common.py @@ -232,6 +232,8 @@ def repo_tags(reponame, distribution=None): ps = None if reponame in compiler_parallel_studio: ps = compiler_parallel_studio[reponame]["ps"] + elif reponame in compiler_x_parallel_studio: + ps = compiler_x_parallel_studio[reponame]["ps"] else: for mpi in mpi_parallel_studio: if reponame.startswith(mpi): -- GitLab