Skip to content
Snippets Groups Projects
Commit 6b0433be authored by Lorenz Huedepohl's avatar Lorenz Huedepohl
Browse files

Support CUDA 10.1

parent e5146dc3
No related branches found
No related tags found
No related merge requests found
Pipeline #67025 passed
...@@ -89,6 +89,8 @@ def valid_cuda(cuda, compiler): ...@@ -89,6 +89,8 @@ def valid_cuda(cuda, compiler):
return compiler == "gcc_6" return compiler == "gcc_6"
if cuda == "cuda_10_0": if cuda == "cuda_10_0":
return compiler == "gcc_6" return compiler == "gcc_6"
if cuda == "cuda_10_1":
return compiler == "gcc_8"
return False return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment