を:
ホスト・コードに取り込ま__global__
関数のアドレスがデバイス・コードに使用することができません(カーネルを起動するなど)。同様に、デバイスコードで取り込まれた__global__
関数のアドレスは、ホストコードで使用することはできません。
ホストコードに__device__
機能のアドレスを使用することはできません。
グローバルに__device__
関数ポインタを定義し、カーネルにそれを呼び出す:
だから次の2つのオプションをしました。
typedef float (*pfunc)(float arg);
__device__ float dev_func(float arg) {
return arg * arg;
}
// create device function pointer here
__device__ pfunc dev_func_ptr = dev_func;
__global__ void ker_func() {
// call function through device function pointer
printf("%f\n", dev_func_ptr(2));
}
あなたは、引数としてカーネルに関数ポインタを渡したい場合は、次の
#define gpuErrchk(val) \
cudaErrorCheck(val, __FILE__, __LINE__, true)
void cudaErrorCheck(cudaError_t err, char* file, int line, bool abort)
{
if(err != cudaSuccess)
{
printf("%s %s %d\n", cudaGetErrorString(err), file, line);
if(abort) exit(-1);
}
}
typedef float (*pfunc)(float arg);
__device__ float dev_func(float arg) {
return arg * arg;
}
// create device function pointer here
__device__ pfunc dev_func_ptr = dev_func;
__global__ void ker_func(pfunc fnc) {
// call function through device function pointer
printf("%f\n", fnc(2));
}
int main(int argc, char** argv)
{
// create a host function pointer
pfunc host_function_ptr;
// copy function pointer value from device to host
gpuErrchk(cudaMemcpyFromSymbol(&host_function_ptr, dev_func_ptr, sizeof(pfunc)));
// pass the copied function pointer in kernel
ker_func<<<1,1>>>(host_function_ptr);
gpuErrchk(cudaPeekAtLastError());
gpuErrchk(cudaDeviceSynchronize());
return 0;
}