This revision was automatically updated to reflect the committed changes.
Closed by commit rC359910: [CUDA][Clang][Bugfix] Add missing CUDA 9.2 case
(authored by gbercea, committed by ).
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61474/new/
https://reviews.llvm.org/D61474
Files:
lib/Driver/ToolChains/Cuda.cpp
Index: lib/Driver/ToolChains/Cuda.cpp
===================================================================
--- lib/Driver/ToolChains/Cuda.cpp
+++ lib/Driver/ToolChains/Cuda.cpp
@@ -656,6 +656,9 @@
case CudaVersion::CUDA_100:
PtxFeature = "+ptx63";
break;
+ case CudaVersion::CUDA_92:
+ PtxFeature = "+ptx61";
+ break;
case CudaVersion::CUDA_91:
PtxFeature = "+ptx61";
break;
Index: lib/Driver/ToolChains/Cuda.cpp
===================================================================
--- lib/Driver/ToolChains/Cuda.cpp
+++ lib/Driver/ToolChains/Cuda.cpp
@@ -656,6 +656,9 @@
case CudaVersion::CUDA_100:
PtxFeature = "+ptx63";
break;
+ case CudaVersion::CUDA_92:
+ PtxFeature = "+ptx61";
+ break;
case CudaVersion::CUDA_91:
PtxFeature = "+ptx61";
break;
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits