Ubuntu 20.04 install
Things got much better now. Find available driver versions:
apt-cache search nvidia-driver
Install the latest one listed + opencl:
sudo apt install nvidia-driver-435 nvidia-opencl-dev
You can also search under:
software-properties-gtk
in the "Additional Drivers" tab for the latest driver.
Ubuntu 15.10 install
sudo apt-get install nvidia-352 nvidia-352-dev nvidia-prime nvidia-modprobe nvidia-opencl-dev
sudo ln -s /usr/include/nvidia-352/GL /usr/local/include
sudo ln -s /usr/lib/x86_64-linux-gnu/libOpenCL.so.1 /usr/local/lib/libOpenCL.so
Test it out
Compile and run:
gcc -o main main.c -lOpenCL
./main
Here's a minimal test program:
main.c
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <CL/cl.h>
int main() {
cl_command_queue command_queue;
cl_context context;
cl_device_id device;
cl_int input = 1;
cl_int kernel_result = 0;
cl_kernel kernel;
cl_mem buffer;
cl_platform_id platform;
cl_program program;
const char source = "__kernel void increment(int in, __global int out) { out[0] = in + 1; }";
clGetPlatformIDs(1, &platform, NULL);
clGetDeviceIDs(platform, CL_DEVICE_TYPE_ALL, 1, &device, NULL);
context = clCreateContext(NULL, 1, &device, NULL, NULL, NULL);
command_queue = clCreateCommandQueue(context, device, 0, NULL);
buffer = clCreateBuffer(context, CL_MEM_READ_WRITE | CL_MEM_ALLOC_HOST_PTR, sizeof(cl_int), NULL, NULL);
program = clCreateProgramWithSource(context, 1, &source, NULL, NULL);
clBuildProgram(program, 1, &device, "", NULL, NULL);
kernel = clCreateKernel(program, "increment", NULL);
clSetKernelArg(kernel, 0, sizeof(cl_int), &input);
clSetKernelArg(kernel, 1, sizeof(cl_mem), &buffer);
clEnqueueTask(command_queue, kernel, 0, NULL, NULL);
clFlush(command_queue);
clFinish(command_queue);
clEnqueueReadBuffer(command_queue, buffer, CL_TRUE, 0, sizeof (cl_int), &kernel_result, 0, NULL, NULL);
assert(kernel_result == 2);
return EXIT_SUCCESS;
}
GitHub upstream.
Notes
I really recommend upgrading to 15.10 to get this to work: I had never managed before.
Tested on:
- Lenovo ThinkPad T430 with NVIDIA NVS 5400M
- Lenovo ThinkPad W540 with NVIDIA Quadro K1100M
- Lenovo ThinkPad P51 with an NVIDIA Quadro M1200 + Ubuntu 21.10 + driver
nvidia-driver-470
Related: https://stackoverflow.com/questions/7542808/how-to-compile-opencl-on-ubuntu/33483311#33483311
deviceQuery
CUDA test program:optirun --bridge primus ./deviceQuery
./deviceQuery Starting...
CUDA Device Query (Runtime API) version (CUDART static linking)
– user3728501 Oct 04 '15 at 09:59cudaGetDeviceCount returned 38
-> no CUDA-capable device is detected
Result = FAIL