cudac helloworld
时间: 2023-10-22 21:10:50 浏览: 96
Introduction_to_CUDA_C.pptx
您好!针对您的问题,我可以为您提供以下代码:
```c++
#include <stdio.h>
#include <cuda_runtime.h>
__global__ void helloCUDA()
{
printf("Hello CUDA!\n");
}
int main()
{
helloCUDA<<<1, 1>>>();
cudaDeviceSynchronize();
return 0;
}
```
这是一个简单的 CUDA 程序,它会在 GPU 上执行一个名为 `helloCUDA` 的函数,并输出一条信息 "Hello CUDA!"。在主函数中,我们通过 `<<<1, 1>>>` 的方式启动了一个仅包含一个线程的 CUDA 核函数。最后,我们使用 `cudaDeviceSynchronize()` 函数等待 GPU 执行完毕。
阅读全文