Skip to content

Commit

Permalink
Update CUDA Compute Capability
Browse files Browse the repository at this point in the history
CUDA SDK 8.0 support for Compute Capability 2.0 – 6.x (Fermi, Kepler,
Maxwell, Pascal).
  • Loading branch information
UnaNancyOwen committed Jan 2, 2017
1 parent 7acaf29 commit 08862cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmake/pcl_find_cuda.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ if(CUDA_FOUND)

# Find a complete list for CUDA compute capabilities at http://developer.nvidia.com/cuda-gpus

if(NOT ${CUDA_VERSION_STRING} VERSION_LESS "6.5")
if(NOT ${CUDA_VERSION_STRING} VERSION_LESS "8.0")
set(__cuda_arch_bin "2.0 2.1(2.0) 3.0 3.5 5.0 5.2 6.0 6.1")
elseif(NOT ${CUDA_VERSION_STRING} VERSION_LESS "6.5")
set(__cuda_arch_bin "2.0 2.1(2.0) 3.0 3.5 5.0 5.2")
elseif(NOT ${CUDA_VERSION_STRING} VERSION_LESS "6.0")
set(__cuda_arch_bin "2.0 2.1(2.0) 3.0 3.5 5.0")
Expand Down

0 comments on commit 08862cb

Please sign in to comment.