1. __device__ 函数的声明和定义
函数头文件device.h
extern __device__ void helloworld();
其实就是声明一下函数
#include__device__ void helloworld() { printf("Hello world!\n"); }
本文共 219 字,大约阅读时间需要 1 分钟。
1. __device__ 函数的声明和定义
函数头文件device.h
extern __device__ void helloworld();
其实就是声明一下函数
#include__device__ void helloworld() { printf("Hello world!\n"); }
转载于:https://www.cnblogs.com/luoyinjie/p/8117190.html