一个简单的c ++ HelloWorld和cuda

Seb*_*nso 3 c++ cuda

我正在努力用cuda制作我的第一个节目.所以我用各种页面的指南制作这个简单的HelloWorld.

#include <cstdlib>
#include <cstdio>
#include <cuda.h>

using namespace std;

__global__ void mykernel(void) {
}

int main(void) {
mykernel<<<1,1>>>();
printf("CPU Hello World!\n");
return 0;
} 
Run Code Online (Sandbox Code Playgroud)

但我得到这个输出:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/home/sebastian/Dropbox/Universidad/Trabajo_de_Grado_pregrado/Codigos/HelloWordCuda'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/hellowordcuda
make[2]: Entering directory `/home/sebastian/Dropbox/Universidad/Trabajo_de_Grado_pregrado/Codigos/HelloWordCuda'
mkdir -p build/Debug/GNU-Linux-x86
rm -f "build/Debug/GNU-Linux-x86/hellowordcuda.o.d"
g++    -c -g -I/usr/local/cuda-7.5/include -MMD -MP -MF "build/Debug/GNU-Linux-x86/hellowordcuda.o.d" -o build/Debug/GNU-Linux-x86/hellowordcuda.o hellowordcuda.cpp
hellowordcuda.cpp:19:1: error: ‘__global__’ does not name a type
 __global__ void mykernel(void) {
 ^
hellowordcuda.cpp: In function ‘int main()’:
hellowordcuda.cpp:24:1: error: ‘mykernel’ was not declared in this scope
 mykernel<<<1,1>>>();
 ^
hellowordcuda.cpp:24:11: error: expected primary-expression before ‘<’ token
 mykernel<<<1,1>>>();
           ^
hellowordcuda.cpp:24:17: error: expected primary-expression before ‘>’ token
 mykernel<<<1,1>>>();
                 ^
hellowordcuda.cpp:24:19: error: expected primary-expression before ‘)’ token
 mykernel<<<1,1>>>();
                   ^
make[2]: *** [build/Debug/GNU-Linux-x86/hellowordcuda.o] Error 1
make[2]: Leaving directory `/home/sebastian/Dropbox/Universidad/Trabajo_de_Grado_pregrado/Codigos/HelloWordCuda'
make[1]: *** [.build-conf] Error 2
make[1]: Leaving directory `/home/sebastian/Dropbox/Universidad/Trabajo_de_Grado_pregrado/Codigos/HelloWordCuda'
 make: *** [.build-impl] Error 2
Run Code Online (Sandbox Code Playgroud)

我很抱歉提出这么简单的问题,但我没有找到任何答案.

非常感谢,任何帮助将不胜感激!

tal*_*ies 8

要完成这项工作,您需要做两件事:

  1. 使用CUDA编译器驱动程序nvcc来控制代码的编译
  2. 将代码传递hellowordcuda.cpphellowordcuda.cu时重命名为nvcc

第二点是必要的,因为nvcc使用文件扩展名来引导编译,如果你的代码有一个.cc.cpp文件扩展名,它只会将代码传递给主机编译器,并且会产生相同的编译错误