When I try and run some of the Linux C UDA projects they do not work. They all compile
but, when they run well the output is in error.
See clock and Bandwidth work when run, but BlackScholes, eigenvalue, cppIntegration , matrixMul and Montecarlo do not. The
error seems to be common: feature is not yet implemented. Now I am only emulating, I have not installed a NVIDIA cuda enabled graphics card.
It seems that for some programs you can only run native, not in emulation.
Is that correct?
Newport_j
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ls
asyncAPI bandwidthTest BlackScholes clock cppIntegration deviceQuery dxtc eigenvalues lineOfSight matrixMul MonteCarlo scan template
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./asyncAPI
time spent executing by the GPU: 0.00
time spent by CPU in CUDA calls: 146.90
CPU executed 0 iterations while waiting for GPU to finish
Test PASSED
Press ENTER to exit…
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./BlackScholes
Initializing data…
…allocating CPU memory for options.
…allocating GPU memory for options.
…generating input data in CPU mem.
…copying input data to GPU mem.
Data init done.
Executing Black-Scholes GPU kernel (1 iterations)…
cutilCheckMsg() CUTIL CUDA error: BlackScholesGPU() execution failed
in file <BlackScholes.cu>, line 195 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./cppIntegration
cutilCheckMsg() CUTIL CUDA error: Kernel execution failed in file <cppIntegration.cu>, line 106 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./eigenvalues
Matrix size: 2048 x 2048
Precision: 0.000010
Iterations to be timed: 1
Result filename: 'eigenvalues.dat’cppIntegration
Gerschgorin interval: -2.894310 / 2.923304
cutilCheckMsg() CUTIL CUDA error: Kernel launch failed. in file <bisect_large.cu>, line 204 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./lineOfSight
Line of sight
cutilCheckMsg() CUTIL CUDA error: Kernel execution failed in file <lineOfSight.cu>, line 234 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./matrixMul
cutilCheckMsg() CUTIL CUDA error: Kernel execution failed in file <matrixMul.cu>, line 140 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./MonteCarlo
cudaSafeCall() Runtime API error in file <MonteCarlo.cpp>, line 151 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$ ./scan
cutilCheckMsg() CUTIL CUDA error: Kernel execution failed in file <scan.cu>, line 138 : feature is not yet implemented.
james ~/NVIDIA_CUDA_SDK/bin/linux/emurelease$