From deed7984a0f81f848333f75933237c90fbbfadeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= <lorenz.huedepohl@rzg.mpg.de> Date: Mon, 19 Nov 2018 19:31:13 +0100 Subject: [PATCH] Add Cuda 10 --- mpcdf_common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mpcdf_common.py b/mpcdf_common.py index 1cb3732..e761ac6 100644 --- a/mpcdf_common.py +++ b/mpcdf_common.py @@ -49,6 +49,8 @@ def valid_cuda(cuda, compiler): return compiler == "gcc_6_3_0" if cuda == "cuda_9_2": return compiler == "gcc_6" + if cuda == "cuda_10_0": + return compiler == "gcc_6" return False -- GitLab