我处理 JCuda 文档中的代码。目前,它只是在 GPU 上添加向量。我应该怎么做才能重用add
CPU(主机)上的功能?我知道,我必须更改__global__
为,__host__ __device__
但我不知道如何在我的 main 函数中调用它。我怀疑我必须使用另一个 nvcc 选项。
我的目标是在 GPU 和 CPU 上运行相同的功能并检查执行时间(我知道如何检查它)。
.cu 文件(编译nvcc -ptx file.cu -o file.ptx
extern "C"
__global__ void add(int n, float *a, float *b, float *sum)
{
int i = blockIdx.x * blockDim.x + threadIdx.x;
if (i<n)
{
sum[i] = a[i] + b[i];
}
}
主要功能片段
public static void main(String[] args) {
cuInit(0);
CUdevice device = new CUdevice();
cuDeviceGet(device, 0);
CUcontext context = new CUcontext();
cuCtxCreate(context, 0, device);
CUmodule module = new CUmodule();
cuModuleLoad(module, "kernels/JCudaVectorAdd.ptx");
CUfunction function = new CUfunction();
cuModuleGetFunction(function, module, "add");
...
Pointer kernelParameters = Pointer.to(
Pointer.to(new int[]{numElements}),
Pointer.to(deviceInputA),
Pointer.to(deviceInputB),
Pointer.to(deviceOutput)
);