基于CUDA的GPU计算PI值

访问【WRITE-BUG数字空间】_[内附完整源码和文档]

基于CUDA的GPU计算PI值。本项目使用CUDA编程模型并行计算PI值,研究GPU与CPU效率的比较,分析不同GPU线程分块对性能的影响。

异构计算试验报告

<pre class="public-DraftStyleDefault-pre" data-offset-key="cndkn-0-0" style="margin: 1.4em 0px; overflow-wrap: normal; background: rgb(246, 246, 246); border-radius: 4px; font-size: 0.9em; overflow: auto; padding: 0.88889em; white-space: pre; word-break: normal; color: rgb(18, 18, 18); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<pre class="Editable-styled" data-block="true" data-editor="59olv" data-offset-key="cndkn-0-0" style="margin: 0px; overflow-wrap: normal; background: rgb(246, 246, 246); border-radius: 0px; font-size: 0.9em; overflow: initial; padding: 0px; white-space: pre; word-break: normal;">

---实验1:基于CUDA的GPU计算PI值

</pre>

</pre>

第一部分:实验环境

OS:Windows 10

CPU:intel(R) Core(TM) i7-10510U CPU@mailto:CPU@ 1.80Ghz

GPU:NVIDIA GeForce MX250

编译器: cl :v19.29.30133

nvcc:Cuda compilationn tools, release 11.4, V11.4.120

第二部分:实验内容

使用 CUDA 编程模型并行计算 PI 值,研究 GPU 与 CPU 效率的比较,分析不同 GPU 线程分块对性能的影响

第三部分:实验原理

数学原理为

1 积分求解

[图片上传失败...(image-773e58-1683119399759)]

编辑 切换为居中

<figcaption class="Image-caption is-placeholder Image-captionV2" style="color: rgb(191, 191, 191); font-size: 0.9em; line-height: 1.5; margin-top: 3px; padding: 0px 1em; text-align: center; font-weight: 400;">添加图片注释,不超过 140 字(可选)</figcaption>

2 幂级数求解

[图片上传失败...(image-1d049b-1683119399759)]
0.png
1.png
2.png
3.png

编辑 切换为居中

<figcaption class="Image-caption is-placeholder Image-captionV2" style="color: rgb(191, 191, 191); font-size: 0.9em; line-height: 1.5; margin-top: 3px; padding: 0px 1em; text-align: center; font-weight: 400;">添加图片注释,不超过 140 字(可选)</figcaption>

使用 CUDA 编程模型,程序执行过程为

<pre class="public-DraftStyleDefault-pre" data-offset-key="r6kn-0-0" style="margin: 1.4em 0px; overflow-wrap: normal; background: rgb(246, 246, 246); border-radius: 4px; font-size: 0.9em; overflow: auto; padding: 0.88889em; white-space: pre; word-break: normal; color: rgb(18, 18, 18); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<pre class="Editable-styled" data-block="true" data-editor="59olv" data-offset-key="r6kn-0-0" style="margin: 0px; overflow-wrap: normal; background: rgb(246, 246, 246); border-radius: 0px; font-size: 0.9em; overflow: initial; padding: 0px; white-space: pre; word-break: normal;">

CUDAMALLOC -> CUDAMEMCPY(HTOD) ->KERNEL->CUDAMEMCPY(DTOH)

</pre>

</pre>

在执行和函数时指定 <<<grid,block>>> 来控制线程的数量和结构

第四部分:性能分析

<pre class="public-DraftStyleDefault-pre" data-offset-key="5jeml-0-0" style="margin: 1.4em 0px; overflow-wrap: normal; background: rgb(246, 246, 246); border-radius: 4px; font-size: 0.9em; overflow: auto; padding: 0.88889em; white-space: pre; word-break: normal; color: rgb(18, 18, 18); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">

<pre class="Editable-styled" data-block="true" data-editor="59olv" data-offset-key="5jeml-0-0" style="margin: 0px; overflow-wrap: normal; background: rgb(246, 246, 246); border-radius: 0px; font-size: 0.9em; overflow: initial; padding: 0px; white-space: pre; word-break: normal;">

define N 迭代次数

</pre>

</pre>

1 CPU VS GPU

1.1 单核比较

N = (10001000100)=100M

CPU(thread = 1):4.887(s)

GPU(grid = 1,block=1):用时过长..无法测量

1.2 多核比较

首先要发挥出最大的 CPU 性能,由于机器的 CPU 是逻辑 8 核的,所以理论上开启 8 个线程可以发挥最大性能。所以我写了一个 8 线程并行的程序来计算,同样循环 N=(10001000100)次

[图片上传失败...(image-50a7b7-1683119399759)]

编辑 切换为居中

<figcaption class="Image-caption is-placeholder Image-captionV2" style="color: rgb(191, 191, 191); font-size: 0.9em; line-height: 1.5; margin-top: 3px; padding: 0px 1em; text-align: center; font-weight: 400;">添加图片注释,不超过 140 字(可选)</figcaption>

可以看出新的时间为 0.768s 快了不少

(PS:这里的程序是使用 GCC 编译的,而 CUDA 程序 NVCC 调用的是 MSCV 的编译器,Windows 平台上 NVCC 不支持 GCC,但是结果应该是差不多的)

2 GPU 性能分析

接下来就是找出 GPU 的最高性能了。

首先在 grid = 1 下探究 block 里的线程数对性能的影响。这里可以直接用 nvprof 分析,非常方便。

2.1 grid = (1,1,1) block = (10,1,1)

[图片上传失败...(image-a509f4-1683119399759)]

编辑 切换为居中

<figcaption class="Image-caption is-placeholder Image-captionV2" style="color: rgb(191, 191, 191); font-size: 0.9em; line-height: 1.5; margin-top: 3px; padding: 0px 1em; text-align: center; font-weight: 400;">添加图片注释,不超过 140 字(可选)</figcaption>

一共用时:34.5556s 线程数:10

可以注意到,在本程序中,主要的时间是消耗在计算上的,由于没有什么要拷贝的内存,所以瓶颈只会出现在计算上

2.2 grid=(1,1,1) block=(100,1,1)

[图片上传失败...(image-420e89-1683119399759)]

编辑 切换为居中

<figcaption class="Image-caption is-placeholder Image-captionV2" style="color: rgb(191, 191, 191); font-size: 0.9em; line-height: 1.5; margin-top: 3px; padding: 0px 1em; text-align: center; font-weight: 400;">添加图片注释,不超过 140 字(可选)</figcaption>

一共用时:2.58383s 线程数:100

2.3 grid=(1,1,1) block=(1000,1,1)

[图片上传失败...(image-e8cfe9-1683119399759)]

编辑 切换为居中

<figcaption class="Image-caption is-placeholder Image-captionV2" style="color: rgb(191, 191, 191); font-size: 0.9em; line-height: 1.5; margin-top: 3px; padding: 0px 1em; text-align: center; font-weight: 400;">添加图片注释,不超过 140 字(可选)</figcaption>

一共用时:1.543s 线程数:1000

每个 block 的最大线程数限制是 1024,这里就不能再增加 block 了


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

推荐阅读更多精彩内容

  • 如果机器学习任务无法使用并行处理,那么经济价值就无法得到体现,但是并行可能是一件比较麻烦的事。传统上(不管这里的传...
    听风阁阅读 4,640评论 0 9
  •   本主题体会下GPU计算的结构设计对并发编程的天然支持;使用GPU处理并发任务,简洁方便。  本主题主要内容就是...
    杨强AT南京阅读 2,955评论 1 2
  • 1. CPU 并行 1.1 概述 之所以先从 CPU 聊起而不是直接切入正题讲 GPU, 是因为并行思想在CPU和...
    Teci阅读 4,803评论 1 5
  • 1. 知识准备 1.1 中央处理器(CPU) 中央处理器(CPU,Central Processing Unit)...
    贰爷阅读 1,657评论 0 2
  • 原文链接:https://zhuanlan.zhihu.com/p/77307505[https://zhuanl...
    晨曦_e931阅读 500评论 0 0