1. __device__ 函数的声明和定义
函数头文件device.h
extern __device__ void helloworld();
其实就是声明一下函数
#include <stdio.h>
__device__ void helloworld()
{
printf("Hello world!\n");
}
标签:cpp ams cuda string std class str log function
1. __device__ 函数的声明和定义
函数头文件device.h
extern __device__ void helloworld();
其实就是声明一下函数
#include <stdio.h>
__device__ void helloworld()
{
printf("Hello world!\n");
}
标签:cpp ams cuda string std class str log function
原文地址:https://www.cnblogs.com/luoyinjie/p/8117190.html