Skip to content
Snippets Groups Projects
Commit 3be6af81 authored by Lorenz Huedepohl's avatar Lorenz Huedepohl Committed by Lorenz Hüdepohl
Browse files

Support for cuda/11.2

parent e82bd796
No related branches found
No related merge requests found
Pipeline #91097 passed
...@@ -254,6 +254,8 @@ def valid_cuda(cuda, compiler): ...@@ -254,6 +254,8 @@ def valid_cuda(cuda, compiler):
return compiler == "gcc_8" return compiler == "gcc_8"
if cuda == "cuda_11_0": if cuda == "cuda_11_0":
return compiler == "gcc_9" return compiler == "gcc_9"
if cuda == "cuda_11_2":
return compiler == "gcc_10"
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