You donβt need to enable the GPU manually.
If an application is implemented on CUDA, it will be launched on the GPU.
For example, here is a sample of our CUDA toolkit.
$ cd /usr/local/cuda/samples/0_Simple/vectorAdd
$ sudo make
$ ./vectorAdd
[Vector addition of 50000 elements]
Copy input data from the host memory to the CUDA device
CUDA kernel launch with 196 blocks of 256 threads
Copy output data from the CUDA device to the host memory
Test PASSED
Done
I have another question after installing cuda components from the SDKManager on the board i just have perform the above test and if it passed successfully that means GPU is running successfully?