无CUDA从入门到精通标题文章(转)

CUDA从入门到精通(零):写在前面

本文原版链接:

在老板的要求下,本博主从2012年上高性能计算课程开始接触CUDA编程,随后将该技术应用到了实际项目中,使处理程序加速超过1K,可见基于图形显示器的并行计算对于追求速度的应用来说无疑是一个理想的选择。还有不到一年毕业,怕是毕业后这些技术也就随毕业而去,准备这个暑假开辟一个CUDA专栏,从入门到精通,步步为营,顺便分享设计的一些经验教训,希望能给学习CUDA的童鞋提供一定指导。个人能力所及,错误难免,欢迎讨论。

PS:申请专栏好像需要先发原创帖超过15篇。。。算了,先写够再申请吧,到时候一并转过去。

CUDA从入门到精通(一):环境搭建

NVIDIA于2006年推出CUDA(Compute Unified Devices Architecture),可以利用其推出的GPU进行通用计算,将并行计算从大型集群扩展到了普通显卡,使得用户只需要一台带有Geforce显卡的笔记本就能跑较大规模的并行处理程序。

使用显卡的好处是,和大型集群相比功耗非常低,成本也不高,但性能很突出。以我的笔记本为例,Geforce 610M,用DeviceQuery程序测试,可得到如下硬件参数:

计算能力达48X0.95 = 45.6 GFLOPS。而笔记本的CPU参数如下:

CPU计算能力为(4核):2.5G*4 = 10GFLOPS,可见,显卡计算性能是4核i5 CPU的4~5倍,因此我们可以充分利用这一资源来对一些耗时的应用进行加速。

好了,工欲善其事必先利其器,为了使用CUDA对GPU进行编程,我们需要准备以下必备工具:

1. 硬件平台,就是显卡,如果你用的不是NVIDIA的显卡,那么只能说抱歉,其他都不支持CUDA。

2. 操作系统,我用过windows XP,Windows 7都没问题,本博客用Windows7。

3. C编译器,建议VS2008,和本博客一致。

4. CUDA编译器NVCC,可以免费免注册免license从官网下载CUDA ToolkitCUDA下载,最新版本为5.0,本博客用的就是该版本。

5. 其他工具(如Visual Assist,辅助代码高亮)

准备完毕,开始安装软件。VS2008安装比较费时间,建议安装完整版(NVIDIA官网说Express版也可以),过程不必详述。CUDA Toolkit 5.0里面包含了NVCC编译器、设计文档、设计例程、CUDA运行时库、CUDA头文件等必备的原材料。

安装完毕,我们在桌面上发现这个图标:

不错,就是它,双击运行,可以看到一大堆例程。我们找到Simple OpenGL这个运行看看效果:

点右边黄线标记处的Run即可看到美妙的三维正弦曲面,鼠标左键拖动可以转换角度,右键拖动可以缩放。如果这个运行成功,说明你的环境基本搭建成功。

出现问题的可能:

1. 你使用远程桌面连接登录到另一台服务器,该服务器上有显卡支持CUDA,但你远程终端不能运行CUDA程序。这是因为远程登录使用的是你本地显卡资源,在远程登录时看不到服务器端的显卡,所以会报错:没有支持CUDA的显卡!解决方法:1. 远程服务器装两块显卡,一块只用于显示,另一块用于计算;2.不要用图形界面登录,而是用命令行界面如telnet登录。

2.有两个以上显卡都支持CUDA的情况,如何区分是在哪个显卡上运行?这个需要你在程序里控制,选择符合一定条件的显卡,如较高的时钟频率、较大的显存、较高的计算版本等。详细操作见后面的博客。

好了,先说这么多,下一节我们介绍如何在VS2008中给GPU编程。

CUDA从入门到精通(二):第一个CUDA程序

书接上回,我们既然直接运行例程成功了,接下来就是了解如何实现例程中的每个环节。当然,我们先从简单的做起,一般编程语言都会找个helloworld例子,而我们的显卡是不会说话的,只能做一些简单的加减乘除运算。所以,CUDA程序的helloworld,我想应该最合适不过的就是向量加了。

打开VS2008,选择File->New->Project,弹出下面对话框,设置如下:

之后点OK,直接进入工程界面。

工程中,我们看到只有一个.cu文件,内容如下:

[cpp]view plaincopy

#include "cuda_runtime.h"

#include "device_launch_parameters.h"

#include 

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize);

__global__voidaddKernel(int*c,constint*a,constint*b)

{

inti = threadIdx.x;

c[i] = a[i] + b[i];

}

intmain()

{

constintarraySize = 5;

constinta[arraySize] = { 1, 2, 3, 4, 5 };

constintb[arraySize] = { 10, 20, 30, 40, 50 };

intc[arraySize] = { 0 };

// Add vectors in parallel.

cudaError_t cudaStatus = addWithCuda(c, a, b, arraySize);

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"addWithCuda failed!");

return1;

}

printf("{1,2,3,4,5} + {10,20,30,40,50} = {%d,%d,%d,%d,%d}\n",

c[0], c[1], c[2], c[3], c[4]);

// cudaThreadExit must be called before exiting in order for profiling and

// tracing tools such as Nsight and Visual Profiler to show complete traces.

cudaStatus = cudaThreadExit();

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaThreadExit failed!");

return1;

}

return0;

}

// Helper function for using CUDA to add vectors in parallel.

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize)

{

int*dev_a = 0;

int*dev_b = 0;

int*dev_c = 0;

cudaError_t cudaStatus;

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

// Allocate GPU buffers for three vectors (two input, one output)    .

cudaStatus = cudaMalloc((void**)&dev_c, size *sizeof(int));

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_a, size *sizeof(int));

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_b, size *sizeof(int));

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

// Copy input vectors from host memory to GPU buffers.

cudaStatus = cudaMemcpy(dev_a, a, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

cudaStatus = cudaMemcpy(dev_b, b, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

// Launch a kernel on the GPU with one thread for each element.

addKernel<<<1, size>>>(dev_c, dev_a, dev_b);

// cudaThreadSynchronize waits for the kernel to finish, and returns

// any errors encountered during the launch.

cudaStatus = cudaThreadSynchronize();

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaThreadSynchronize returned error code %d after launching addKernel!\n", cudaStatus);

gotoError;

}

// Copy output vector from GPU buffer to host memory.

cudaStatus = cudaMemcpy(c, dev_c, size *sizeof(int), cudaMemcpyDeviceToHost);

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

Error:

cudaFree(dev_c);

cudaFree(dev_a);

cudaFree(dev_b);

returncudaStatus;

}

可以看出,CUDA程序和C程序并无区别,只是多了一些以"cuda"开头的一些库函数和一个特殊声明的函数:

[cpp]view plaincopy

__global__voidaddKernel(int*c,constint*a,constint*b)

{

inti = threadIdx.x;

c[i] = a[i] + b[i];

}

这个函数就是在GPU上运行的函数,称之为核函数,英文名Kernel Function,注意要和操作系统内核函数区分开来。

我们直接按F7编译,可以得到如下输出:

[html]view plaincopy

1>------ Build started: Project: cuda_helloworld, Configuration: Debug Win32 ------

1>Compiling with CUDA Build Rule...

1>"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\\bin\nvcc.exe"  -G-gencode=arch=compute_10,code=\"sm_10,compute_10\"-gencode=arch=compute_20,code=\"sm_20,compute_20\"  --machine 32 -ccbin "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin"    -Xcompiler "/EHsc /W3 /nologo /O2 /Zi   /MT  "  -I"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\\include"-maxrregcount=0--compile -o "Debug/kernel.cu.obj" kernel.cu

1>tmpxft_000000ec_00000000-8_kernel.compute_10.cudafe1.gpu

1>tmpxft_000000ec_00000000-14_kernel.compute_10.cudafe2.gpu

1>tmpxft_000000ec_00000000-5_kernel.compute_20.cudafe1.gpu

1>tmpxft_000000ec_00000000-17_kernel.compute_20.cudafe2.gpu

1>kernel.cu

1>kernel.cu

1>tmpxft_000000ec_00000000-8_kernel.compute_10.cudafe1.cpp

1>tmpxft_000000ec_00000000-24_kernel.compute_10.ii

1>Linking...

1>Embedding manifest...

1>Performing Post-Build Event...

1>copy "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\\bin\cudart*.dll" "C:\Users\DongXiaoman\Documents\Visual Studio 2008\Projects\cuda_helloworld\Debug"

1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\\bin\cudart32_50_35.dll

1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\\bin\cudart64_50_35.dll

1>已复制         2 个文件。

1>Build log was saved at "file://c:\Users\DongXiaoman\Documents\Visual Studio 2008\Projects\cuda_helloworld\cuda_helloworld\Debug\BuildLog.htm"

1>cuda_helloworld - 0 error(s), 105 warning(s)

========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0skipped==========

可见,编译.cu文件需要利用nvcc工具。该工具的详细使用见后面博客。

直接运行,可以得到结果图如下:

如果显示正确,那么我们的第一个程序宣告成功!

CUDA从入门到精通(三):必备资料

刚入门CUDA,跑过几个官方提供的例程,看了看人家的代码,觉得并不难,但自己动手写代码时,总是不知道要先干什么,后干什么,也不知道从哪个知识点学起。这时就需要有一本能提供指导的书籍或者教程,一步步跟着做下去,直到真正掌握。

一般讲述CUDA的书,我认为不错的有下面这几本:

初学者可以先看美国人写的这本《GPU高性能编程CUDA实战》,可操作性很强,但不要期望能全看懂(Ps:里面有些概念其实我现在还是不怎么懂),但不影响你进一步学习。如果想更全面地学习CUDA,《GPGPU编程技术》比较客观详细地介绍了通用GPU编程的策略,看过这本书,可以对显卡有更深入的了解,揭开GPU的神秘面纱。后面《OpenGL编程指南》完全是为了体验图形交互带来的乐趣,可以有选择地看;《GPU高性能运算之CUDA》这本是师兄给的,适合快速查询(感觉是将官方编程手册翻译了一遍)一些关键技术和概念。

有了这些指导材料还不够,我们在做项目的时候,遇到的问题在这些书上肯定找不到,所以还需要有下面这些利器:

这里面有很多工具的使用手册,如CUDA_GDB,Nsight,CUDA_Profiler等,方便调试程序;还有一些有用的库,如CUFFT是专门用来做快速傅里叶变换的,CUBLAS是专用于线性代数(矩阵、向量计算)的,CUSPASE是专用于稀疏矩阵表示和计算的库。这些库的使用可以降低我们设计算法的难度,提高开发效率。另外还有些入门教程也是值得一读的,你会对NVCC编译器有更近距离的接触。

好了,前言就这么多,本博主计划按如下顺序来讲述CUDA:

1.了解设备

2.线程并行

3.块并行

4.流并行

5.线程通信

6.线程通信实例:规约

7.存储模型

8.常数内存

9.纹理内存

10.主机页锁定内存

11.图形互操作

12.优化准则

13.CUDA与MATLAB接口

14.CUDA与MFC接口

CUDA从入门到精通(四):加深对设备的认识

前面三节已经对CUDA做了一个简单的介绍,这一节开始真正进入编程环节。

首先,初学者应该对自己使用的设备有较为扎实的理解和掌握,这样对后面学习并行程序优化很有帮助,了解硬件详细参数可以通过上节介绍的几本书和官方资料获得,但如果仍然觉得不够直观,那么我们可以自己动手获得这些内容。

以第二节例程为模板,我们稍加改动的部分代码如下:

[cpp]view plaincopy

// Add vectors in parallel.

cudaError_t cudaStatus;

intnum = 0;

cudaDeviceProp prop;

cudaStatus = cudaGetDeviceCount(&num);

for(inti = 0;i

{

cudaGetDeviceProperties(&prop,i);

}

cudaStatus = addWithCuda(c, a, b, arraySize);

这个改动的目的是让我们的程序自动通过调用cuda API函数获得设备数目和属性,所谓“知己知彼,百战不殆”。

cudaError_t 是cuda错误类型,取值为整数。

cudaDeviceProp为设备属性结构体,其定义可以从cuda Toolkit安装目录中找到,我的路径为:C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\include\driver_types.h,找到定义为:

[cpp]view plaincopy

/**

* CUDA device properties

*/

struct__device_builtin__ cudaDeviceProp

{

charname[256];/**< ASCII string identifying device */

size_ttotalGlobalMem;/**< Global memory available on device in bytes */

size_tsharedMemPerBlock;/**< Shared memory available per block in bytes */

intregsPerBlock;/**< 32-bit registers available per block */

intwarpSize;/**< Warp size in threads */

size_tmemPitch;/**< Maximum pitch in bytes allowed by memory copies */

intmaxThreadsPerBlock;/**< Maximum number of threads per block */

intmaxThreadsDim[3];/**< Maximum size of each dimension of a block */

intmaxGridSize[3];/**< Maximum size of each dimension of a grid */

intclockRate;/**< Clock frequency in kilohertz */

size_ttotalConstMem;/**< Constant memory available on device in bytes */

intmajor;/**< Major compute capability */

intminor;/**< Minor compute capability */

size_ttextureAlignment;/**< Alignment requirement for textures */

size_ttexturePitchAlignment;/**< Pitch alignment requirement for texture references bound to pitched memory */

intdeviceOverlap;/**< Device can concurrently copy memory and execute a kernel. Deprecated. Use instead asyncEngineCount. */

intmultiProcessorCount;/**< Number of multiprocessors on device */

intkernelExecTimeoutEnabled;/**< Specified whether there is a run time limit on kernels */

intintegrated;/**< Device is integrated as opposed to discrete */

intcanMapHostMemory;/**< Device can map host memory with cudaHostAlloc/cudaHostGetDevicePointer */

intcomputeMode;/**< Compute mode (See ::cudaComputeMode) */

intmaxTexture1D;/**< Maximum 1D texture size */

intmaxTexture1DMipmap;/**< Maximum 1D mipmapped texture size */

intmaxTexture1DLinear;/**< Maximum size for 1D textures bound to linear memory */

intmaxTexture2D[2];/**< Maximum 2D texture dimensions */

intmaxTexture2DMipmap[2];/**< Maximum 2D mipmapped texture dimensions */

intmaxTexture2DLinear[3];/**< Maximum dimensions (width, height, pitch) for 2D textures bound to pitched memory */

intmaxTexture2DGather[2];/**< Maximum 2D texture dimensions if texture gather operations have to be performed */

intmaxTexture3D[3];/**< Maximum 3D texture dimensions */

intmaxTextureCubemap;/**< Maximum Cubemap texture dimensions */

intmaxTexture1DLayered[2];/**< Maximum 1D layered texture dimensions */

intmaxTexture2DLayered[3];/**< Maximum 2D layered texture dimensions */

intmaxTextureCubemapLayered[2];/**< Maximum Cubemap layered texture dimensions */

intmaxSurface1D;/**< Maximum 1D surface size */

intmaxSurface2D[2];/**< Maximum 2D surface dimensions */

intmaxSurface3D[3];/**< Maximum 3D surface dimensions */

intmaxSurface1DLayered[2];/**< Maximum 1D layered surface dimensions */

intmaxSurface2DLayered[3];/**< Maximum 2D layered surface dimensions */

intmaxSurfaceCubemap;/**< Maximum Cubemap surface dimensions */

intmaxSurfaceCubemapLayered[2];/**< Maximum Cubemap layered surface dimensions */

size_tsurfaceAlignment;/**< Alignment requirements for surfaces */

intconcurrentKernels;/**< Device can possibly execute multiple kernels concurrently */

intECCEnabled;/**< Device has ECC support enabled */

intpciBusID;/**< PCI bus ID of the device */

intpciDeviceID;/**< PCI device ID of the device */

intpciDomainID;/**< PCI domain ID of the device */

inttccDriver;/**< 1 if device is a Tesla device using TCC driver, 0 otherwise */

intasyncEngineCount;/**< Number of asynchronous engines */

intunifiedAddressing;/**< Device shares a unified address space with the host */

intmemoryClockRate;/**< Peak memory clock frequency in kilohertz */

intmemoryBusWidth;/**< Global memory bus width in bits */

intl2CacheSize;/**< Size of L2 cache in bytes */

intmaxThreadsPerMultiProcessor;/**< Maximum resident threads per multiprocessor */

};

后面的注释已经说明了其字段代表意义,可能有些术语对于初学者理解起来还是有一定困难,没关系,我们现在只需要关注以下几个指标:

name:就是设备名称;

totalGlobalMem:就是显存大小;

major,minor:CUDA设备版本号,有1.1, 1.2, 1.3, 2.0, 2.1等多个版本;

clockRate:GPU时钟频率;

multiProcessorCount:GPU大核数,一个大核(专业点称为流多处理器,SM,Stream-Multiprocessor)包含多个小核(流处理器,SP,Stream-Processor)

编译,运行,我们在VS2008工程的cudaGetDeviceProperties()函数处放一个断点,单步执行这一函数,然后用Watch窗口,切换到Auto页,展开+,在我的笔记本上得到如下结果:

可以看到,设备名为GeForce 610M,显存1GB,设备版本2.1(比较高端了,哈哈),时钟频率为950MHz(注意950000单位为kHz),大核数为1。在一些高性能GPU上(如Tesla,Kepler系列),大核数可能达到几十甚至上百,可以做更大规模的并行处理。

PS:今天看SDK代码时发现在help_cuda.h中有个函数实现从CUDA设备版本查询相应大核中小核的数目,觉得很有用,以后编程序可以借鉴,摘抄如下:

[cpp]view plaincopy

// Beginning of GPU Architecture definitions

inlineint_ConvertSMVer2Cores(intmajor,intminor)

{

// Defines for GPU Architecture types (using the SM version to determine the # of cores per SM

typedefstruct

{

intSM;// 0xMm (hexidecimal notation), M = SM Major version, and m = SM minor version

intCores;

} sSMtoCores;

sSMtoCores nGpuArchCoresPerSM[] =

{

{ 0x10,  8 },// Tesla Generation (SM 1.0) G80 class

{ 0x11,  8 },// Tesla Generation (SM 1.1) G8x class

{ 0x12,  8 },// Tesla Generation (SM 1.2) G9x class

{ 0x13,  8 },// Tesla Generation (SM 1.3) GT200 class

{ 0x20, 32 },// Fermi Generation (SM 2.0) GF100 class

{ 0x21, 48 },// Fermi Generation (SM 2.1) GF10x class

{ 0x30, 192},// Kepler Generation (SM 3.0) GK10x class

{ 0x35, 192},// Kepler Generation (SM 3.5) GK11x class

{   -1, -1 }

};

intindex = 0;

while(nGpuArchCoresPerSM[index].SM != -1)

{

if(nGpuArchCoresPerSM[index].SM == ((major << 4) + minor))

{

returnnGpuArchCoresPerSM[index].Cores;

}

index++;

}

// If we don't find the values, we default use the previous one to run properly

printf("MapSMtoCores for SM %d.%d is undefined.  Default to use %d Cores/SM\n", major, minor, nGpuArchCoresPerSM[7].Cores);

returnnGpuArchCoresPerSM[7].Cores;

}

// end of GPU Architecture definitions

可见,设备版本2.1的一个大核有48个小核,而版本3.0以上的一个大核有192个小核!

前文说到过,当我们用的电脑上有多个显卡支持CUDA时,怎么来区分在哪个上运行呢?这里我们看一下addWithCuda这个函数是怎么做的。

[cpp]view plaincopy

cudaError_t cudaStatus;

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);

if(cudaStatus != cudaSuccess) {

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

使用了cudaSetDevice(0)这个操作,0表示能搜索到的第一个设备号,如果有多个设备,则编号为0,1,2...。

再看我们本节添加的代码,有个函数cudaGetDeviceCount(&num),这个函数用来获取设备总数,这样我们选择运行CUDA程序的设备号取值就是0,1,...num-1,于是可以一个个枚举设备,利用cudaGetDeviceProperties(&prop)获得其属性,然后利用一定排序、筛选算法,找到最符合我们应用的那个设备号opt,然后调用cudaSetDevice(opt)即可选择该设备。选择标准可以从处理能力、版本控制、名称等各个角度出发。后面讲述流并发过程时,还要用到这些API。

如果希望了解更多硬件内容可以结合http://www.geforce.cn/hardware获取。

CUDA从入门到精通(五):线程并行

多线程我们应该都不陌生,在操作系统中,进程是资源分配的基本单元,而线程是CPU时间调度的基本单元(这里假设只有1个CPU)。

将线程的概念引申到CUDA程序设计中,我们可以认为线程就是执行CUDA程序的最小单元,前面我们建立的工程代码中,有个核函数概念不知各位童鞋还记得没有,在GPU上每个线程都会运行一次该核函数。

但GPU上的线程调度方式与CPU有很大不同。CPU上会有优先级分配,从高到低,同样优先级的可以采用时间片轮转法实现线程调度。GPU上线程没有优先级概念,所有线程机会均等,线程状态只有等待资源和执行两种状态,如果资源未就绪,那么就等待;一旦就绪,立即执行。当GPU资源很充裕时,所有线程都是并发执行的,这样加速效果很接近理论加速比;而GPU资源少于总线程个数时,有一部分线程就会等待前面执行的线程释放资源,从而变为串行化执行。

代码还是用上一节的吧,改动很少,再贴一遍:

[cpp]view plaincopy

#include "cuda_runtime.h"           //CUDA运行时API

#include "device_launch_parameters.h"

#include 

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize);

__global__voidaddKernel(int*c,constint*a,constint*b)

{

inti = threadIdx.x;

c[i] = a[i] + b[i];

}

intmain()

{

constintarraySize = 5;

constinta[arraySize] = { 1, 2, 3, 4, 5 };

constintb[arraySize] = { 10, 20, 30, 40, 50 };

intc[arraySize] = { 0 };

// Add vectors in parallel.

cudaError_t cudaStatus;

intnum = 0;

cudaDeviceProp prop;

cudaStatus = cudaGetDeviceCount(&num);

for(inti = 0;i

{

cudaGetDeviceProperties(&prop,i);

}

cudaStatus = addWithCuda(c, a, b, arraySize);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"addWithCuda failed!");

return1;

}

printf("{1,2,3,4,5} + {10,20,30,40,50} = {%d,%d,%d,%d,%d}\n",c[0],c[1],c[2],c[3],c[4]);

// cudaThreadExit must be called before exiting in order for profiling and

// tracing tools such as Nsight and Visual Profiler to show complete traces.

cudaStatus = cudaThreadExit();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadExit failed!");

return1;

}

return0;

}

// 重点理解这个函数

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize)

{

int*dev_a = 0;//GPU设备端数据指针

int*dev_b = 0;

int*dev_c = 0;

cudaError_t cudaStatus;//状态指示

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);//选择运行平台

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

// 分配GPU设备端内存

cudaStatus = cudaMalloc((void**)&dev_c, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_a, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_b, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

// 拷贝数据到GPU

cudaStatus = cudaMemcpy(dev_a, a, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

cudaStatus = cudaMemcpy(dev_b, b, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

// 运行核函数

    addKernel<<<1, size>>>(dev_c, dev_a, dev_b);

// cudaThreadSynchronize waits for the kernel to finish, and returns

// any errors encountered during the launch.

cudaStatus = cudaThreadSynchronize();//同步线程

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadSynchronize returned error code %d after launching addKernel!\n", cudaStatus);

gotoError;

}

// Copy output vector from GPU buffer to host memory.

cudaStatus = cudaMemcpy(c, dev_c, size *sizeof(int), cudaMemcpyDeviceToHost);//拷贝结果回主机

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

Error:

cudaFree(dev_c);//释放GPU设备端内存

cudaFree(dev_a);

cudaFree(dev_b);

returncudaStatus;

}

红色部分即启动核函数的调用过程,这里看到调用方式和C不太一样。<<<>>>表示运行时配置符号,里面1表示只分配一个线程组(又称线程块、Block),size表示每个线程组有size个线程(Thread)。本程序中size根据前面传递参数个数应该为5,所以运行的时候,核函数在5个GPU线程单元上分别运行了一次,总共运行了5次。这5个线程是如何知道自己“身份”的?是靠threadIdx这个内置变量,它是个dim3类型变量,接受<<<>>>中第二个参数,它包含x,y,z 3维坐标,而我们传入的参数只有一维,所以只有x值是有效的。通过核函数中int i = threadIdx.x;这一句,每个线程可以获得自身的id号,从而找到自己的任务去执行。

CUDA从入门到精通(六):块并行

同一版本的代码用了这么多次,有点过意不去,于是这次我要做较大的改动

,大家要擦亮眼睛,拭目以待。

块并行相当于操作系统中多进程的情况,上节说到,CUDA有线程组(线程块)的概念,将一组线程组织到一起,共同分配一部分资源,然后内部调度执行。线程块与线程块之间,毫无瓜葛。这有利于做更粗粒度的并行。我们将上一节的代码改为块并行版本如下:

下节我们介绍块并行。

[cpp]view plaincopy

#include "cuda_runtime.h"

#include "device_launch_parameters.h"

#include 

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize);

__global__voidaddKernel(int*c,constint*a,constint*b)

{

inti = blockIdx.x;

    c[i] = a[i] + b[i];

}

intmain()

{

constintarraySize = 5;

constinta[arraySize] = { 1, 2, 3, 4, 5 };

constintb[arraySize] = { 10, 20, 30, 40, 50 };

intc[arraySize] = { 0 };

// Add vectors in parallel.

cudaError_t cudaStatus;

intnum = 0;

cudaDeviceProp prop;

cudaStatus = cudaGetDeviceCount(&num);

for(inti = 0;i

{

cudaGetDeviceProperties(&prop,i);

}

cudaStatus = addWithCuda(c, a, b, arraySize);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"addWithCuda failed!");

return1;

}

printf("{1,2,3,4,5} + {10,20,30,40,50} = {%d,%d,%d,%d,%d}\n",c[0],c[1],c[2],c[3],c[4]);

// cudaThreadExit must be called before exiting in order for profiling and

// tracing tools such as Nsight and Visual Profiler to show complete traces.

cudaStatus = cudaThreadExit();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadExit failed!");

return1;

}

return0;

}

// Helper function for using CUDA to add vectors in parallel.

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize)

{

int*dev_a = 0;

int*dev_b = 0;

int*dev_c = 0;

cudaError_t cudaStatus;

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

// Allocate GPU buffers for three vectors (two input, one output)    .

cudaStatus = cudaMalloc((void**)&dev_c, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_a, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_b, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

// Copy input vectors from host memory to GPU buffers.

cudaStatus = cudaMemcpy(dev_a, a, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

cudaStatus = cudaMemcpy(dev_b, b, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

// Launch a kernel on the GPU with one thread for each element.

   addKernel<<>>(dev_c, dev_a, dev_b);

// cudaThreadSynchronize waits for the kernel to finish, and returns

// any errors encountered during the launch.

cudaStatus = cudaThreadSynchronize();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadSynchronize returned error code %d after launching addKernel!\n", cudaStatus);

gotoError;

}

// Copy output vector from GPU buffer to host memory.

cudaStatus = cudaMemcpy(c, dev_c, size *sizeof(int), cudaMemcpyDeviceToHost);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

Error:

cudaFree(dev_c);

cudaFree(dev_a);

cudaFree(dev_b);

returncudaStatus;

}

和上一节相比,只有这两行有改变,<<<>>>里第一个参数改成了size,第二个改成了1,表示我们分配size个线程块,每个线程块仅包含1个线程,总共还是有5个线程。这5个线程相互独立,执行核函数得到相应的结果,与上一节不同的是,每个线程获取id的方式变为int i = blockIdx.x;这是线程块ID。

于是有童鞋提问了,线程并行和块并行的区别在哪里?

线程并行是细粒度并行,调度效率高;块并行是粗粒度并行,每次调度都要重新分配资源,有时资源只有一份,那么所有线程块都只能排成一队,串行执行。

那是不是我们所有时候都应该用线程并行,尽可能不用块并行?

当然不是,我们的任务有时可以采用分治法,将一个大问题分解为几个小规模问题,将这些小规模问题分别用一个线程块实现,线程块内可以采用细粒度的线程并行,而块之间为粗粒度并行,这样可以充分利用硬件资源,降低线程并行的计算复杂度。适当分解,降低规模,在一些矩阵乘法、向量内积计算应用中可以得到充分的展示。

实际应用中,常常是二者的结合。线程块、线程组织图如下所示。

多个线程块组织成了一个Grid,称为线程格(经历了从一位线程,二维线程块到三维线程格的过程,立体感很强啊)。

好了,下一节我们介绍流并行,是更高层次的并行。

CUDA从入门到精通(七):流并行

前面我们没有讲程序的结构,我想有些童鞋可能迫不及待想知道CUDA程序到底是怎么一个执行过程。好的,这一节在介绍流之前,先把CUDA程序结构简要说一下。

CUDA程序文件后缀为.cu,有些编译器可能不认识这个后缀的文件,我们可以在VS2008的Tools->Options->Text Editor->File Extension里添加cu后缀到VC++中,如下图:

一个.cu文件内既包含CPU程序(称为主机程序),也包含GPU程序(称为设备程序)。如何区分主机程序和设备程序?根据声明,凡是挂有“__global__”或者“__device__”前缀的函数,都是在GPU上运行的设备程序,不同的是__global__设备程序可被主机程序调用,而__device__设备程序则只能被设备程序调用。

没有挂任何前缀的函数,都是主机程序。主机程序显示声明可以用__host__前缀。设备程序需要由NVCC进行编译,而主机程序只需要由主机编译器(如VS2008中的cl.exe,Linux上的GCC)。主机程序主要完成设备环境初始化,数据传输等必备过程,设备程序只负责计算。

主机程序中,有一些“cuda”打头的函数,这些都是CUDA Runtime API,即运行时函数,主要负责完成设备的初始化、内存分配、内存拷贝等任务。我们前面第三节用到的函数cudaGetDeviceCount(),cudaGetDeviceProperties(),cudaSetDevice()都是运行时API。这些函数的具体参数声明我们不必一一记下来,拿出第三节的官方利器就可以轻松查询,让我们打开这个文件:

打开后,在pdf搜索栏中输入一个运行时函数,例如cudaMemcpy,查到的结果如下:

可以看到,该API函数的参数形式为,第一个表示目的地,第二个表示来源地,第三个参数表示字节数,第四个表示类型。如果对类型不了解,直接点击超链接,得到详细解释如下:

可见,该API可以实现从主机到主机、主机到设备、设备到主机、设备到设备的内存拷贝过程。同时可以发现,利用该API手册可以很方便地查询我们需要用的这些API函数,所以以后编CUDA程序一定要把它打开,随时准备查询,这样可以大大提高编程效率。

好了,进入今天的主题:流并行。

前面已经介绍了线程并行和块并行,知道了线程并行为细粒度的并行,而块并行为粗粒度的并行,同时也知道了CUDA的线程组织情况,即Grid-Block-Thread结构。一组线程并行处理可以组织为一个block,而一组block并行处理可以组织为一个Grid,很自然地想到,Grid只是一个网格,我们是否可以利用多个网格来完成并行处理呢?答案就是利用流。

流可以实现在一个设备上运行多个核函数。前面的块并行也好,线程并行也好,运行的核函数都是相同的(代码一样,传递参数也一样)。而流并行,可以执行不同的核函数,也可以实现对同一个核函数传递不同的参数,实现任务级别的并行。

CUDA中的流用cudaStream_t类型实现,用到的API有以下几个:cudaStreamCreate(cudaStream_t * s)用于创建流,cudaStreamDestroy(cudaStream_t s)用于销毁流,cudaStreamSynchronize()用于单个流同步,cudaDeviceSynchronize()用于整个设备上的所有流同步,cudaStreamQuery()用于查询一个流的任务是否已经完成。具体的含义可以查询API手册。

下面我们将前面的两个例子中的任务改用流实现,仍然是{1,2,3,4,5}+{10,20,30,40,50} = {11,22,33,44,55}这个例子。代码如下:

[cpp]view plaincopy

#include "cuda_runtime.h"

#include "device_launch_parameters.h"

#include 

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize);

__global__voidaddKernel(int*c,constint*a,constint*b)

{

inti = blockIdx.x;

c[i] = a[i] + b[i];

}

intmain()

{

constintarraySize = 5;

constinta[arraySize] = { 1, 2, 3, 4, 5 };

constintb[arraySize] = { 10, 20, 30, 40, 50 };

intc[arraySize] = { 0 };

// Add vectors in parallel.

cudaError_t cudaStatus;

intnum = 0;

cudaDeviceProp prop;

cudaStatus = cudaGetDeviceCount(&num);

for(inti = 0;i

{

cudaGetDeviceProperties(&prop,i);

}

cudaStatus = addWithCuda(c, a, b, arraySize);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"addWithCuda failed!");

return1;

}

printf("{1,2,3,4,5} + {10,20,30,40,50} = {%d,%d,%d,%d,%d}\n",c[0],c[1],c[2],c[3],c[4]);

// cudaThreadExit must be called before exiting in order for profiling and

// tracing tools such as Nsight and Visual Profiler to show complete traces.

cudaStatus = cudaThreadExit();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadExit failed!");

return1;

}

return0;

}

// Helper function for using CUDA to add vectors in parallel.

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize)

{

int*dev_a = 0;

int*dev_b = 0;

int*dev_c = 0;

cudaError_t cudaStatus;

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

// Allocate GPU buffers for three vectors (two input, one output)    .

cudaStatus = cudaMalloc((void**)&dev_c, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_a, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_b, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

// Copy input vectors from host memory to GPU buffers.

cudaStatus = cudaMemcpy(dev_a, a, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

cudaStatus = cudaMemcpy(dev_b, b, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

  cudaStream_t stream[5];

for(inti = 0;i<5;i++)

{

cudaStreamCreate(&stream[i]);//创建流

}

// Launch a kernel on the GPU with one thread for each element.

for(inti = 0;i<5;i++)

{

addKernel<<<1,1,0,stream[i]>>>(dev_c+i, dev_a+i, dev_b+i);//执行流

}

cudaDeviceSynchronize();

// cudaThreadSynchronize waits for the kernel to finish, and returns

// any errors encountered during the launch.

cudaStatus = cudaThreadSynchronize();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadSynchronize returned error code %d after launching addKernel!\n", cudaStatus);

gotoError;

}

// Copy output vector from GPU buffer to host memory.

cudaStatus = cudaMemcpy(c, dev_c, size *sizeof(int), cudaMemcpyDeviceToHost);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

Error:

for(inti = 0;i<5;i++)

{

cudaStreamDestroy(stream[i]);//销毁流

}

    cudaFree(dev_c);

cudaFree(dev_a);

cudaFree(dev_b);

returncudaStatus;

}

注意到,我们的核函数代码仍然和块并行的版本一样,只是在调用时做了改变,<<<>>>中的参数多了两个,其中前两个和块并行、线程并行中的意义相同,仍然是线程块数(这里为1)、每个线程块中线程数(这里也是1)。第三个为0表示每个block用到的共享内存大小,这个我们后面再讲;第四个为流对象,表示当前核函数在哪个流上运行。我们创建了5个流,每个流上都装载了一个核函数,同时传递参数有些不同,也就是每个核函数作用的对象也不同。这样就实现了任务级别的并行,当我们有几个互不相关的任务时,可以写多个核函数,资源允许的情况下,我们将这些核函数装载到不同流上,然后执行,这样可以实现更粗粒度的并行。

好了,流并行就这么简单,我们处理任务时,可以根据需要,选择最适合的并行方式。

UDA从入门到精通(八):线程通信

我们前面几节主要介绍了三种利用GPU实现并行处理的方式:线程并行,块并行和流并行。在这些方法中,我们一再强调,各个线程所进行的处理是互不相关的,即两个线程不回产生交集,每个线程都只关注自己的一亩三分地,对其他线程毫无兴趣,就当不存在。。。。

当然,实际应用中,这样的例子太少了,也就是遇到向量相加、向量对应点乘这类才会有如此高的并行度,而其他一些应用,如一组数求和,求最大(小)值,各个线程不再是相互独立的,而是产生一定关联,线程2可能会用到线程1的结果,这时就需要利用本节的线程通信技术了。

线程通信在CUDA中有三种实现方式:

1. 共享存储器;

2. 线程 同步;

3. 原子操作;

最常用的是前两种方式,共享存储器,术语Shared Memory,是位于SM中的特殊存储器。还记得SM吗,就是流多处理器,大核是也。一个SM中不仅包含若干个SP(流处理器,小核),还包括一部分高速Cache,寄存器组,共享内存等,结构如图所示:

从图中可看出,一个SM内有M个SP,Shared Memory由这M个SP共同占有。另外指令单元也被这M个SP共享,即SIMT架构(单指令多线程架构),一个SM中所有SP在同一时间执行同一代码。

为了实现线程通信,仅仅靠共享内存还不够,需要有同步机制才能使线程之间实现有序处理。通常情况是这样:当线程A需要线程B计算的结果作为输入时,需要确保线程B已经将结果写入共享内存中,然后线程A再从共享内存中读出。同步必不可少,否则,线程A可能读到的是无效的结果,造成计算错误。同步机制可以用CUDA内置函数:__syncthreads();当某个线程执行到该函数时,进入等待状态,直到同一线程块(Block)中所有线程都执行到这个函数为止,即一个__syncthreads()相当于一个线程同步点,确保一个Block中所有线程都达到同步,然后线程进入运行状态。

综上两点,我们可以写一段线程通信的伪代码如下:

[cpp]view plaincopy

//Begin

ifthisisthreadB

write something to Shared Memory;

endif

__syncthreads();

ifthisisthreadA

read something from Shared Memory;

endif

//End

上面代码在CUDA中实现时,由于SIMT特性,所有线程都执行同样的代码,所以在线程中需要判断自己的身份,以免误操作。

注意的是,位于同一个Block中的线程才能实现通信,不同Block中的线程不能通过共享内存、同步进行通信,而应采用原子操作或主机介入。

对于原子操作,如果感兴趣可以翻阅《GPU高性能编程CUDA实战》第九章“原子性”。

本节完。下节我们给出一个实例来看线程通信的代码怎么设计。

CUDA从入门到精通(九):线程通信实例

接着上一节,我们利用刚学到的共享内存和线程同步技术,来做一个简单的例子。先看下效果吧:

很简单,就是分别求出1~5这5个数字的和,平方和,连乘积。相信学过C语言的童鞋都能用for循环做出同上面一样的效果,但为了学习CUDA共享内存和同步技术,我们还是要把简单的东西复杂化(^_^)。

简要分析一下,上面例子的输入都是一样的,1,2,3,4,5这5个数,但计算过程有些变化,而且每个输出和所有输入都相关,不是前几节例子中那样,一个输出只和一个输入有关。所以我们在利用CUDA编程时,需要针对特殊问题做些让步,把一些步骤串行化实现。

输入数据原本位于主机内存,通过cudaMemcpy API已经拷贝到GPU显存(术语为全局存储器,Global Memory),每个线程运行时需要从Global Memory读取输入数据,然后完成计算,最后将结果写回Global Memory。当我们计算需要多次相同输入数据时,大家可能想到,每次都分别去Global Memory读数据好像有点浪费,如果数据很大,那么反复多次读数据会相当耗时间。索性我们把它从Global Memory一次性读到SM内部,然后在内部进行处理,这样可以节省反复读取的时间。

有了这个思路,结合上节看到的SM结构图,看到有一片存储器叫做Shared Memory,它位于SM内部,处理时访问速度相当快(差不多每个时钟周期读一次),而全局存储器读一次需要耗费几十甚至上百个时钟周期。于是,我们就制定A计划如下:

线程块数:1,块号为0;(只有一个线程块内的线程才能进行通信,所以我们只分配一个线程块,具体工作交给每个线程完成)

线程数:5,线程号分别为0~4;(线程并行,前面讲过)

共享存储器大小:5个int型变量大小(5 * sizeof(int))。

步骤一:读取输入数据。将Global Memory中的5个整数读入共享存储器,位置一一对应,和线程号也一一对应,所以可以同时完成。

步骤二:线程同步,确保所有线程都完成了工作。

步骤三:指定线程,对共享存储器中的输入数据完成相应处理。

代码如下:

[cpp]view plaincopy

#include "cuda_runtime.h"

#include "device_launch_parameters.h"

#include 

cudaError_t addWithCuda(int*c,constint*a,size_tsize);

__global__voidaddKernel(int*c,constint*a)

{

inti = threadIdx.x;

extern__shared__intsmem[];

   smem[i] = a[i];

__syncthreads();

if(i == 0)// 0号线程做平方和

{

c[0] = 0;

for(intd = 0; d < 5; d++)

{

c[0] += smem[d] * smem[d];

}

}

if(i == 1)//1号线程做累加

{

c[1] = 0;

for(intd = 0; d < 5; d++)

{

c[1] += smem[d];

}

}

if(i == 2)//2号线程做累乘

{

c[2] = 1;

for(intd = 0; d < 5; d++)

{

c[2] *= smem[d];

}

}

}

intmain()

{

constintarraySize = 5;

constinta[arraySize] = { 1, 2, 3, 4, 5 };

intc[arraySize] = { 0 };

// Add vectors in parallel.

cudaError_t cudaStatus = addWithCuda(c, a, arraySize);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"addWithCuda failed!");

return1;

}

printf("\t1+2+3+4+5 = %d\n\t1^2+2^2+3^2+4^2+5^2 = %d\n\t1*2*3*4*5 = %d\n\n\n\n\n\n", c[1], c[0], c[2]);

// cudaThreadExit must be called before exiting in order for profiling and

// tracing tools such as Nsight and Visual Profiler to show complete traces.

cudaStatus = cudaThreadExit();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadExit failed!");

return1;

}

return0;

}

// Helper function for using CUDA to add vectors in parallel.

cudaError_t addWithCuda(int*c,constint*a,size_tsize)

{

int*dev_a = 0;

int*dev_c = 0;

cudaError_t cudaStatus;

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

// Allocate GPU buffers for three vectors (two input, one output)    .

cudaStatus = cudaMalloc((void**)&dev_c, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_a, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

// Copy input vectors from host memory to GPU buffers.

cudaStatus = cudaMemcpy(dev_a, a, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

// Launch a kernel on the GPU with one thread for each element.

    addKernel<<<1, size, size *sizeof(int), 0>>>(dev_c, dev_a);

// cudaThreadSynchronize waits for the kernel to finish, and returns

// any errors encountered during the launch.

cudaStatus = cudaThreadSynchronize();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadSynchronize returned error code %d after launching addKernel!\n", cudaStatus);

gotoError;

}

// Copy output vector from GPU buffer to host memory.

cudaStatus = cudaMemcpy(c, dev_c, size *sizeof(int), cudaMemcpyDeviceToHost);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

Error:

cudaFree(dev_c);

cudaFree(dev_a);

returncudaStatus;

}

从代码中看到执行配置<<<>>>中第三个参数为共享内存大小(字节数),这样我们就知道了全部4个执行配置参数的意义。恭喜,你的CUDA终于入门了!

CUDA从入门到精通(十):性能剖析和Visual Profiler

入门后的进一步学习的内容,就是如何优化自己的代码。我们前面的例子没有考虑任何性能方面优化,是为了更好地学习基本知识点,而不是其他细节问题。从本节开始,我们要从性能出发考虑问题,不断优化代码,使执行速度提高是并行处理的唯一目的。

测试代码运行速度有很多方法,C语言里提供了类似于SystemTime()这样的API获得系统时间,然后计算两个事件之间的时长从而完成计时功能。在CUDA中,我们有专门测量设备运行时间的API,下面一一介绍。

翻开编程手册《CUDA_Toolkit_Reference_Manual》,随时准备查询不懂得API。我们在运行核函数前后,做如下操作:

[cpp]view plaincopy

cudaEvent_t start, stop;  //事件对象

cudaEventCreate(&start);  //创建事件

cudaEventCreate(&stop);       //创建事件

cudaEventRecord(start, stream);   //记录开始

myKernel<<>>(parameter list);//执行核函数

cudaEventRecord(stop,stream); //记录结束事件

cudaEventSynchronize(stop);   //事件同步,等待结束事件之前的设备操作均已完成

floatelapsedTime;

cudaEventElapsedTime(&elapsedTime,start,stop);//计算两个事件之间时长(单位为ms)

核函数执行时间将被保存在变量elapsedTime中。通过这个值我们可以评估算法的性能。下面给一个例子,来看怎么使用计时功能。

前面的例子规模很小,只有5个元素,处理量太小不足以计时,下面将规模扩大为1024,此外将反复运行1000次计算总时间,这样估计不容易受随机扰动影响。我们通过这个例子对比线程并行和块并行的性能如何。代码如下:

[cpp]view plaincopy

#include "cuda_runtime.h"

#include "device_launch_parameters.h"

#include 

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize);

__global__voidaddKernel_blk(int*c,constint*a,constint*b)

{

inti = blockIdx.x;

c[i] = a[i]+ b[i];

}

__global__voidaddKernel_thd(int*c,constint*a,constint*b)

{

inti = threadIdx.x;

c[i] = a[i]+ b[i];

}

intmain()

{

constintarraySize = 1024;

inta[arraySize] = {0};

intb[arraySize] = {0};

for(inti = 0;i

{

a[i] = i;

b[i] = arraySize-i;

}

intc[arraySize] = {0};

// Add vectors in parallel.

cudaError_t cudaStatus;

intnum = 0;

cudaDeviceProp prop;

cudaStatus = cudaGetDeviceCount(&num);

for(inti = 0;i

{

cudaGetDeviceProperties(&prop,i);

}

cudaStatus = addWithCuda(c, a, b, arraySize);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"addWithCuda failed!");

return1;

}

// cudaThreadExit must be called before exiting in order for profiling and

// tracing tools such as Nsight and Visual Profiler to show complete traces.

cudaStatus = cudaThreadExit();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadExit failed!");

return1;

}

for(inti = 0;i

{

if(c[i] != (a[i]+b[i]))

{

printf("Error in %d\n",i);

}

}

return0;

}

// Helper function for using CUDA to add vectors in parallel.

cudaError_t addWithCuda(int*c,constint*a,constint*b,size_tsize)

{

int*dev_a = 0;

int*dev_b = 0;

int*dev_c = 0;

cudaError_t cudaStatus;

// Choose which GPU to run on, change this on a multi-GPU system.

cudaStatus = cudaSetDevice(0);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaSetDevice failed!  Do you have a CUDA-capable GPU installed?");

gotoError;

}

// Allocate GPU buffers for three vectors (two input, one output)    .

cudaStatus = cudaMalloc((void**)&dev_c, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_a, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

cudaStatus = cudaMalloc((void**)&dev_b, size *sizeof(int));

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMalloc failed!");

gotoError;

}

// Copy input vectors from host memory to GPU buffers.

cudaStatus = cudaMemcpy(dev_a, a, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

cudaStatus = cudaMemcpy(dev_b, b, size *sizeof(int), cudaMemcpyHostToDevice);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

cudaEvent_t start,stop;

cudaEventCreate(&start);

cudaEventCreate(&stop);

cudaEventRecord(start,0);

for(inti = 0;i<1000;i++)

{

//      addKernel_blk<<>>(dev_c, dev_a, dev_b);

addKernel_thd<<<1,size>>>(dev_c, dev_a, dev_b);

}

cudaEventRecord(stop,0);

cudaEventSynchronize(stop);

floattm;

cudaEventElapsedTime(&tm,start,stop);

printf("GPU Elapsed time:%.6f ms.\n",tm);

// cudaThreadSynchronize waits for the kernel to finish, and returns

// any errors encountered during the launch.

cudaStatus = cudaThreadSynchronize();

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaThreadSynchronize returned error code %d after launching addKernel!\n", cudaStatus);

gotoError;

}

// Copy output vector from GPU buffer to host memory.

cudaStatus = cudaMemcpy(c, dev_c, size *sizeof(int), cudaMemcpyDeviceToHost);

if(cudaStatus != cudaSuccess)

{

fprintf(stderr,"cudaMemcpy failed!");

gotoError;

}

Error:

cudaFree(dev_c);

cudaFree(dev_a);

cudaFree(dev_b);

returncudaStatus;

}

addKernel_blk是采用块并行实现的向量相加操作,而addKernel_thd是采用线程并行实现的向量相加操作。分别运行,得到的结果如下图所示:

线程并行:

块并行:

可见性能竟然相差近16倍!因此选择并行处理方法时,如果问题规模不是很大,那么采用线程并行是比较合适的,而大问题分多个线程块处理时,每个块内线程数不要太少,像本文中的只有1个线程,这是对硬件资源的极大浪费。一个理想的方案是,分N个线程块,每个线程块包含512个线程,将问题分解处理,效率往往比单一的线程并行处理或单一块并行处理高很多。这也是CUDA编程的精髓。

上面这种分析程序性能的方式比较粗糙,只知道大概运行时间长度,对于设备程序各部分代码执行时间没有一个深入的认识,这样我们就有个问题,如果对代码进行优化,那么优化哪一部分呢?是将线程数调节呢,还是改用共享内存?这个问题最好的解决方案就是利用Visual Profiler。下面内容摘自《CUDA_Profiler_Users_Guide》

“Visual Profiler是一个图形化的剖析工具,可以显示你的应用程序中CPU和GPU的活动情况,利用分析引擎帮助你寻找优化的机会。”

其实除了可视化的界面,NVIDIA提供了命令行方式的剖析命令:nvprof。对于初学者,使用图形化的方式比较容易上手,所以本节使用Visual Profiler。

打开Visual Profiler,可以从CUDA Toolkit安装菜单处找到。主界面如下:

我们点击File->New Session,弹出新建会话对话框,如下图所示:

其中File一栏填入我们需要进行剖析的应用程序exe文件,后面可以都不填(如果需要命令行参数,可以在第三行填入),直接Next,见下图:

第一行为应用程序执行超时时间设定,可不填;后面三个单选框都勾上,这样我们分别使能了剖析,使能了并发核函数剖析,然后运行分析器。

点Finish,开始运行我们的应用程序并进行剖析、分析性能。

上图中,CPU和GPU部分显示了硬件和执行内容信息,点某一项则将时间条对应的部分高亮,便于观察,同时右边详细信息会显示运行时间信息。从时间条上看出,cudaMalloc占用了很大一部分时间。下面分析器给出了一些性能提升的关键点,包括:低计算利用率(计算时间只占总时间的1.8%,也难怪,加法计算复杂度本来就很低呀!);低内存拷贝/计算交叠率(一点都没有交叠,完全是拷贝——计算——拷贝);低存储拷贝尺寸(输入数据量太小了,相当于你淘宝买了个日记本,运费比实物价格还高!);低存储拷贝吞吐率(只有1.55GB/s)。这些对我们进一步优化程序是非常有帮助的。

我们点一下Details,就在Analysis窗口旁边。得到结果如下所示:

通过这个窗口可以看到每个核函数执行时间,以及线程格、线程块尺寸,占用寄存器个数,静态共享内存、动态共享内存大小等参数,以及内存拷贝函数的执行情况。这个提供了比前面cudaEvent函数测时间更精确的方式,直接看到每一步的执行时间,精确到ns。

在Details后面还有一个Console,点一下看看。

这个其实就是命令行窗口,显示运行输出。看到加入了Profiler信息后,总执行时间变长了(原来线程并行版本的程序运行时间只需4ms左右)。这也是“测不准定理”决定的,如果我们希望测量更细微的时间,那么总时间肯定是不准的;如果我们希望测量总时间,那么细微的时间就被忽略掉了。

后面Settings就是我们建立会话时的参数配置,不再详述。

通过本节,我们应该能对CUDA性能提升有了一些想法,好,下一节我们将讨论如何优化CUDA程序。

http://blog.csdn.net/kkk584520/article/details/9413973

http://blog.csdn.net/kkk584520/article/details/9414191

http://blog.csdn.net/kkk584520/article/details/9415199

http://blog.csdn.net/kkk584520/article/details/9417251

http://blog.csdn.net/kkk584520/article/details/9420793

http://blog.csdn.net/kkk584520/article/details/9428389

http://blog.csdn.net/kkk584520/article/details/9428859

http://blog.csdn.net/kkk584520/article/details/9449635

http://blog.csdn.net/kkk584520/article/details/9472695

http://blog.csdn.net/kkk584520/article/details/9473319

http://blog.csdn.net/kkk584520/article/details/9490233

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 158,117评论 4 360
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,963评论 1 290
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 107,897评论 0 240
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,805评论 0 203
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,208评论 3 286
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,535评论 1 216
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,797评论 2 311
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,493评论 0 197
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,215评论 1 241
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,477评论 2 244
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,988评论 1 258
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,325评论 2 252
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,971评论 3 235
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,055评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,807评论 0 194
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,544评论 2 271
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,455评论 2 266

推荐阅读更多精彩内容