diff options
author | Justin Lebar <jlebar@google.com> | 2016-09-07 20:09:50 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-09-07 20:09:50 +0000 |
commit | 5b4e0222d7246919bacc74c439f6038fba6759dd (patch) | |
tree | 293737ef2f5a14a99f3240c94251e9152cf797cb | |
parent | 84473cdd412e34dc641b61efc0ef0778cb64cfb1 (diff) | |
download | bcm5719-llvm-5b4e0222d7246919bacc74c439f6038fba6759dd.tar.gz bcm5719-llvm-5b4e0222d7246919bacc74c439f6038fba6759dd.zip |
[CUDA] Call it "CUDA", not "CUDA C/C++" in our docs.
CUDA is an extension to C++ -- there is no such thing as "CUDA C". But
also, the language is much more commonly called "CUDA" than "CUDA C++".
llvm-svn: 280849
-rw-r--r-- | llvm/docs/CompileCudaWithLLVM.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/CompileCudaWithLLVM.rst b/llvm/docs/CompileCudaWithLLVM.rst index 85aab5dda0f..8de21d679fc 100644 --- a/llvm/docs/CompileCudaWithLLVM.rst +++ b/llvm/docs/CompileCudaWithLLVM.rst @@ -1,5 +1,5 @@ =================================== -Compiling CUDA C/C++ with LLVM +Compiling CUDA with LLVM =================================== .. contents:: @@ -9,7 +9,7 @@ Introduction ============ This document contains the user guides and the internals of compiling CUDA -C/C++ with LLVM. It is aimed at both users who want to compile CUDA with LLVM +code with LLVM. It is aimed at both users who want to compile CUDA with LLVM and developers who want to improve LLVM for GPUs. This document assumes a basic familiarity with CUDA. Information about CUDA programming can be found in the `CUDA programming guide @@ -49,8 +49,8 @@ up LLVM. $ cmake [options] .. $ make -How to Compile CUDA C/C++ with LLVM -=================================== +How to Compile CUDA Code with LLVM +================================== We assume you have installed the CUDA driver and runtime. Consult the `NVIDIA CUDA installation guide |