Hi,
Actually, I run a sample jcuda code fro vector addition before this.So I am able to generate .ptx file but with some changes in kernel and kernel parameters. I got this error which is pointing to cuCtxSynchronize();. And there is no more info abut this error( as I read some of your older post : ).https://forum.byte-welt.net/byte-welt-projekte-projects/jcuda/4435-jcuda-kernel-doesnt-dimension-data.html?highlight=CUDA_ERROR_UNKNOWN
My Kernel parameters and launching :
Pointer kernelParameters = Pointer.to(Pointer.to(new int[]{numElements}),Pointer.to(deviceInputA));
cuLaunchKernel(function,
gridSizeX, 1, 1,
blockSizeX, 1, 1,
(numElements * Sizeof.INT), null,
kernelParameters, null
);
cuCtxSynchronize();
...```
Please, can you help me to sort it out?