From 6b0433be693a8a125a4b9b212e57e4851830250a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= <lorenz.huedepohl@rzg.mpg.de> Date: Fri, 12 Apr 2019 10:28:11 +0200 Subject: [PATCH] Support CUDA 10.1 --- mpcdf_common.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mpcdf_common.py b/mpcdf_common.py index 163cdf1..ed57784 100644 --- a/mpcdf_common.py +++ b/mpcdf_common.py @@ -89,6 +89,8 @@ def valid_cuda(cuda, compiler): return compiler == "gcc_6" if cuda == "cuda_10_0": return compiler == "gcc_6" + if cuda == "cuda_10_1": + return compiler == "gcc_8" return False -- GitLab