[llvm] r280849 - [CUDA] Call it "CUDA", not "CUDA C/C++" in our docs.
Justin Lebar via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 7 13:09:50 PDT 2016
Author: jlebar
Date: Wed Sep 7 15:09:50 2016
New Revision: 280849
URL: http://llvm.org/viewvc/llvm-project?rev=280849&view=rev
Log:
[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++".
Modified:
llvm/trunk/docs/CompileCudaWithLLVM.rst
Modified: llvm/trunk/docs/CompileCudaWithLLVM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CompileCudaWithLLVM.rst?rev=280849&r1=280848&r2=280849&view=diff
==============================================================================
--- llvm/trunk/docs/CompileCudaWithLLVM.rst (original)
+++ llvm/trunk/docs/CompileCudaWithLLVM.rst Wed Sep 7 15:09:50 2016
@@ -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
More information about the llvm-commits
mailing list