This article is a step by step guide to quickly get started developing using Intel® SDK for OpenCL™ Applications with the Linux SRB5 driver package. The OpenCL driver is a prerequisite for using the GPU capabilities of Intel® Computer Vision SDK or Intel® Deep Learning Deployment Toolkit.
- Install the driver
- Install the SDK
- Set up Eclipse
For SRB4.1 instructions, please see https://software.intel.com/en-us/articles/sdk-for-opencl-gsg-srb41.
Step 1: Install the driver
This script covers the steps needed to install the SRB5 driver package in Ubuntu 14.04, Ubuntu 16.04, CentOS 7.2, and CentOS 7.3.
To use
$ mv install_OCL_driver.sh_.txt install_OCL_driver.sh $ chmod 755 install_OCL_driver.sh $ sudo su $ ./install_OCL_driver.sh install
The script automates downloading the driver package, installing prerequisites and user-mode components, patching the 4.7 kernel, and building it.
Experimental: this version of the script has an option to skip the kernel patch/rebuild step. For newer kernels, such as the 4.8 default kernel for Ubuntu 16.04, nearly all of OpenCL passes basic smoke tests.
You can check your progress with the System Analyzer Utility. If successful, you should see smoke test results looking like this at the bottom of the the system analyzer output:
--------------------------
Component Smoke Tests:
--------------------------
[ OK ] OpenCL check:platform:Intel(R) OpenCL GPU OK CPU OK
Experimental installation without kernel patch or rebuild:
If using Ubuntu 16.04 with the default 4.8 kernel you may be able to skip the kernel patch and rebuild steps. This configuration works fairly well but several features (i.e. OpenCL 2.x device-side enqueue and shared virtual memory, VTune GPU support) require patches. Install without patches has been "smoke test" validated to check that it is viable to suggest for experimental use only, but it is not fully supported or certified.
Step 2: Install the SDK
This script will set up all prerequisites for successful SDK install for Ubuntu.
$ mv install_SDK_prereq_ubuntu.sh_.txt install_SDK_prereq_ubuntu.sh $ sudo su $ ./install_SDK_prereq_ubuntu.sh
After this, run the SDK installer.
Here is a kernel to test the SDK install:
__kernel void simpleAdd( __global int *pA, __global int *pB, __global int *pC) { const int id = get_global_id(0); pC[id] = pA[id] + pB[id]; }
Check that the command line compiler ioc64 is installed with
$ ioc64 -input=simpleAdd.cl -asm (expected output) No command specified, using 'build' as default OpenCL Intel(R) Graphics device was found! Device name: Intel(R) HD Graphics Device version: OpenCL 2.0 Device vendor: Intel(R) Corporation Device profile: FULL_PROFILE fcl build 1 succeeded. bcl build succeeded. simpleAdd info: Maximum work-group size: 256 Compiler work-group size: (0, 0, 0) Local memory size: 0 Preferred multiple of work-group size: 32 Minimum amount of private memory: 0 Build succeeded!
Step 3: Set up Eclipse
Intel SDK for OpenCL applications works with Eclipse Mars and Neon.
After installing, copy the CodeBuilder*.jar file from the SDK eclipse-plug-in folder to the Eclipse dropins folder.
$ cd eclipse/dropins $ find /opt/intel -name 'CodeBuilder*.jar' -exec cp {} . \;
Start Eclipse. Code-Builder options should be available in the main menu.