欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

cuda 如何用Makefile编译cuda samples?

程序员文章站 2022-07-12 21:00:55
...
  • 安装cuda toolkit之后,会有samples文件夹,存储了cuda的一些demo,便于学习与理解。
  • 编译步骤
  1. 在单个sample文件夹内,有 .cu 文件和Makefile,终端定位到文件夹,输入sudo make就可以编译了
    2.运行,如./asyncAPI ,就可以看到输出的信息
[./asyncAPI] - Starting...
GPU Device 0: "Pascal" with compute capability 6.1

CUDA device [GeForce GTX 1080 Ti]
time spent executing by the GPU: 168.72
time spent by CPU in CUDA calls: 0.02
CPU executed 668184 iterations while waiting for GPU to finish

注意:
Makefile project only supported on Mac OS X and Linux Platforms)
如果在windows里面使用,配合VS也会很方便