From 443e2b50ac23a7b4715b966c75f7bbcf1ee1e58e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= <lorenz.huedepohl@rzg.mpg.de> Date: Thu, 19 Jul 2018 14:07:40 +0200 Subject: [PATCH] Use compatible gcc 6.3.0 for CUDA 9.1 --- mpcdf_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpcdf_common.py b/mpcdf_common.py index 06b265b..9d49b32 100644 --- a/mpcdf_common.py +++ b/mpcdf_common.py @@ -45,7 +45,7 @@ def valid_cuda(cuda, compiler): if cuda == "cuda_8_0": return compiler == "gcc_5" if cuda == "cuda_9_1": - return compiler == "gcc_6" + return compiler == "gcc_6_3_0" return False -- GitLab