Commit 7fdbe07b authored by Jeff Johnson's avatar Jeff Johnson Committed by GitHub

Update INSTALL

Added additional notice concerning compute capabilities.
parent 28168310
...@@ -191,12 +191,16 @@ See the example makefile on how to set the flags. ...@@ -191,12 +191,16 @@ See the example makefile on how to set the flags.
The nvcc-specific flags to pass to the compiler, based on your desired The nvcc-specific flags to pass to the compiler, based on your desired
compute capability. Only compute capability 3.5+ is supported. For compute capability. Only compute capability 3.5+ is supported. For
example: example, we enable by default:
-gencode arch=compute_35,code="compute_35" -gencode arch=compute_35,code="compute_35"
-gencode arch=compute_52,code="compute_52" -gencode arch=compute_52,code="compute_52"
-gencode arch=compute_60,code="compute_60" -gencode arch=compute_60,code="compute_60"
However, look at https://developer.nvidia.com/cuda-gpus to determine
what compute capability you need to use, and replace our gencode
specifications with the one(s) you need.
Most other flags are related to the C++11 compiler used by nvcc to Most other flags are related to the C++11 compiler used by nvcc to
complile the actual C++ code. They are normally just transmitted by complile the actual C++ code. They are normally just transmitted by
nvcc, except some of them that are not recognized and that should be nvcc, except some of them that are not recognized and that should be
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment