<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic The following steps worked in OpenCL* for CPU</title>
    <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940079#M1724</link>
    <description>The following steps worked for me on Ubuntu 15.04 based on Noah's instructions above:

&lt;B&gt;$ sudo apt-get install -y rpm alien libnuma1&lt;/B&gt;

&lt;B&gt;$ tar -xvf intel_code_builder_for_opencl_2015_ubuntu_5.0.0.43_x64.tgz&lt;/B&gt;
&lt;B&gt;$ cd intel_code_builder_for_opencl_2015_ubuntu_5.0.0.43_x64&lt;/B&gt;

&lt;B&gt;$ sudo rpm --import PUBLIC_KEY.PUB&lt;/B&gt;

&lt;B&gt;$ cd rpm&lt;/B&gt;

&lt;B&gt;$ fakeroot alien --to-deb opencl-1.2-base-5.0.0.43-1.x86_64.rpm&lt;/B&gt;
&lt;B&gt;$ fakeroot alien --to-deb opencl-1.2-intel-cpu-5.0.0.43-1.x86_64.rpm&lt;/B&gt;

&lt;B&gt;$ sudo dpkg -i opencl-1.2-base_5.0.0.43-2_amd64.deb&lt;/B&gt;
&lt;B&gt;$ sudo dpkg -i opencl-1.2-intel-cpu_5.0.0.43-2_amd64.deb&lt;/B&gt;

The above installs the library files and installable client driver registration in /opt/intel/opencl-1.2-5.0.0.43.
Two more steps were needed to run an OpenCL program.

Add library to search path:
&lt;B&gt;$ sudo nano /etc/ld.so.conf.d/intelOpenCL.conf&lt;/B&gt;
Add the line:
&lt;B&gt;/opt/intel/opencl-1.2-5.0.0.43/lib64&lt;/B&gt;

Link to the intel icd file in the expected location:
&lt;B&gt;$ sudo ln /opt/intel/opencl-1.2-5.0.0.43/etc/intel64.icd /etc/OpenCL/vendors/intel64.icd
$ sudo ldconfig

$ sudo clinfo&lt;/B&gt;
Number of platforms                               2
  Platform Name                                   NVIDIA CUDA
  Platform Vendor                                 NVIDIA Corporation
  Platform Version                                OpenCL 1.1 CUDA 6.5.45
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_byte_addressable_store cl_khr_icd cl_khr_gl_sharing cl_nv_compiler_options cl_nv_device_attribute_query cl_nv_pragma_unroll cl_nv_copy_opts 
  Platform Extensions function suffix             NV

  Platform Name                                   Intel(R) OpenCL
  Platform Vendor                                 Intel(R) Corporation
  Platform Version                                OpenCL 1.2 LINUX
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_byte_addressable_store cl_khr_depth_images cl_khr_3d_image_writes cl_intel_exec_by_local_thread cl_khr_spir cl_khr_fp64 
  Platform Extensions function suffix             INTEL</description>
    <pubDate>Mon, 20 Jul 2015 11:07:00 GMT</pubDate>
    <dc:creator>Roger_B_1</dc:creator>
    <dc:date>2015-07-20T11:07:00Z</dc:date>
    <item>
      <title>Ubuntu version of OpenCL</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940066#M1711</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Is there an installation package for Ubuntu ?&lt;/P&gt;
&lt;P&gt;If not, it will be nice to have, a lot of customers would like to run my soft. on Ubuntu with the Intel SDK !&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2013 12:37:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940066#M1711</guid>
      <dc:creator>Polar01</dc:creator>
      <dc:date>2013-04-22T12:37:14Z</dc:date>
    </item>
    <item>
      <title>Download the Intel SDK for</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940067#M1712</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="http://software.intel.com/en-us/user/487506"&gt;Polar01&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Download the Intel SDK for OpenCL Applications from Intel's web site (&lt;A href="http://software.intel.com/en-us/articles/vcsource-tools-opencl-sdk/"&gt;http://software.intel.com/en-us/articles/vcsource-tools-opencl-sdk/&lt;/A&gt;).&amp;nbsp;After downloading, you will end with a .tgz file with an RPM inside (crazy, I know). In my case, the file is namedintel_sdk_for_ocl_applications_2012_x64.tgz.&lt;/LI&gt;
&lt;LI&gt;Extract the RPM from the .tgz file:&lt;BR /&gt;$ &lt;B&gt;tar zxvf&amp;nbsp;intel_sdk_for_ocl_applications_2012_x64.tgz&lt;/B&gt;&lt;BR /&gt;This will extract the&amp;nbsp;intel_ocl_sdk_2012_x64.rpm&amp;nbsp;file.&lt;/LI&gt;
&lt;LI&gt;Convert the RPM file to .deb format and install:&lt;BR /&gt;$ &lt;B&gt;sudo apt-get install -y rpm alien libnuma1&lt;/B&gt; &amp;nbsp; &amp;nbsp;# In case you don't have these packages $ &lt;B&gt;fakeroot alien --to-deb intel_ocl_sdk_2012_x64.rpm&lt;/B&gt; $ &lt;B&gt;sudo dpkg -i&amp;nbsp;intel-ocl-sdk_2.0-31361_amd64.deb&lt;/B&gt;&lt;/LI&gt;
&lt;LI&gt;Now the SDK and libraries will be installed to /usr/lib64, while Ubuntu expects them to be in /usr/lib. No problem, just make a symlink and update the library cache:&lt;BR /&gt;$ &lt;B&gt;sudo ln -s /usr/lib64/libOpenCL.so /usr/lib/libOpenCL.so&lt;/B&gt; $ &lt;B&gt;sudo ldconfig&lt;/B&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;That's all! OpenCL should be installed now.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2013 15:47:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940067#M1712</guid>
      <dc:creator>Ahmed_BH</dc:creator>
      <dc:date>2013-04-22T15:47:00Z</dc:date>
    </item>
    <item>
      <title>Thx Ahmed ;-)</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940068#M1713</link>
      <description>&lt;P&gt;Thx Ahmed ;-)&lt;/P&gt;
&lt;P&gt;Yes, it sounds to be the way to do... but it is "complex" for basic users... I can do that but imagine that my customers are simple "artists" and they don't care about installing drivers etc... command line is a "geek" stuff for my customers :-D&lt;/P&gt;
&lt;P&gt;I would like that Intel provide an "easy" way for theses peoples... it is important for basic users.&lt;/P&gt;
&lt;P&gt;So, if someone of the Intel team can advice ?&lt;/P&gt;
&lt;P&gt;But thanks for your help, Ahmed ;-)&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2013 15:58:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940068#M1713</guid>
      <dc:creator>Polar01</dc:creator>
      <dc:date>2013-04-22T15:58:27Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940069#M1714</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;We hear your requests and taking it into considerations. We are not discussing future products releases in this forum, yet all feedback and asks are taken into account.&lt;/P&gt;
&lt;P&gt;Thanks for posting your requirement here.&lt;/P&gt;
&lt;P&gt;Arnon&lt;/P&gt;
&lt;P&gt;OpenCL SDK Product Manager&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2013 11:42:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940069#M1714</guid>
      <dc:creator>ARNON_P_Intel</dc:creator>
      <dc:date>2013-04-23T11:42:00Z</dc:date>
    </item>
    <item>
      <title>Thanks a lot Arnon :-)</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940070#M1715</link>
      <description>&lt;P&gt;Thanks a lot Arnon :-)&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2013 11:48:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940070#M1715</guid>
      <dc:creator>Polar01</dc:creator>
      <dc:date>2013-04-23T11:48:03Z</dc:date>
    </item>
    <item>
      <title>Hello Arnon,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940071#M1716</link>
      <description>&lt;P&gt;Hello Arnon,&lt;/P&gt;
&lt;P&gt;I have a Ubuntu 12.04 and from this link (http://software.intel.com/en-us/vcsource/tools/opencl) it looks like i should be using the Version XE 2013. The notes for this version say it has been tested on xeon processors. I do have a i5 with integrated Intel HD graphics on my machine. So which version should i install for this configuration (i5 with integrated graphics with ubuntu 12.04)? Please advise.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Renga&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2013 18:02:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940071#M1716</guid>
      <dc:creator>renga_a_</dc:creator>
      <dc:date>2013-08-05T18:02:00Z</dc:date>
    </item>
    <item>
      <title>Here are some steps I used</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940072#M1717</link>
      <description>&lt;P&gt;Here are some steps I used with Ubuntu 13.04 and the new multi-package distribution Intel® SDK for OpenCL* Applications XE 2013:&lt;/P&gt;
&lt;P&gt;Download the 64-bit distribution from Intel: intel_sdk_for_ocl_applications_2013_xe_sdk_3.0.67279_x64.tgz&lt;BR /&gt;Download the Intel public key.&amp;nbsp; I had trouble finding it, but googling the filename pointed me to the correct page at Intel. Intel-E901-172E-EF96-900F-B8E1-4184-D7BE-0E73-F789-186F.pub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo apt-get install -y rpm alien libnuma1 &lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo rpm --import Intel-E901-172E-EF96-900F-B8E1-4184-D7BE-0E73-F789-186F.pub&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ tar -xvf intel_sdk_for_ocl_applications_2013_xe_sdk_3.0.67279_x64.tgz&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;$ cd intel_sdk_for_ocl_applications_2013_xe_sdk_3.0.67279_x64/&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ fakeroot alien --to-deb opencl-1.2-base-3.0.67279-1.x86_64.rpm&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;$ fakeroot alien --to-deb opencl-1.2-intel-cpu-3.0.67279-1.x86_64.rpm&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo dpkg -i opencl-1.2-base_3.0.67279-2_amd64.deb&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo dpkg -i opencl-1.2-intel-cpu_3.0.67279-2_amd64.deb&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;The above installs the library files and intallable client driver registration in /opt/intel/opencl-1.2-3.0.67279.&lt;BR /&gt;Two more steps were needed to run an OpenCL program.&lt;BR /&gt;&lt;BR /&gt;Add library to search path:&lt;BR /&gt;&lt;STRONG&gt;$ sudo touch /etc/ld.so.conf.d/intelOpenCL.conf&lt;/STRONG&gt;&lt;BR /&gt;Edit this file, add the line:&lt;BR /&gt;/opt/intel/opencl-1.2-3.0.67279/lib64&lt;BR /&gt;&lt;BR /&gt;Link to the intel icd file in the expected location:&lt;BR /&gt;&lt;STRONG&gt;$ sudo ln /opt/intel/opencl-1.2-3.0.67279/etc/intel64.icd /etc/OpenCL/vendors/intel64.icd&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo ldconfig&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;At this point I could run an existing application.&amp;nbsp; If doing developmnent, install the developer headers and tools:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ fakeroot alien --to-deb opencl-1.2-devel-3.0.67279-1.x86_64.rpm&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;$ fakeroot alien --to-deb opencl-1.2-intel-devel-3.0.67279-1.x86_64.rpm&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo dpkg -i opencl-1.2-devel_3.0.67279-2_amd64.deb&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;$ sudo dpkg -i opencl-1.2-intel-devel_3.0.67279-2_amd64.deb&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;It is worth noting the include path for headers is: /opt/intel/opencl-1.2-3.0.67279/include&lt;BR /&gt;The linking path for libraries is: /opt/intel/opencl-1.2-3.0.67279/lib64&lt;BR /&gt;The developer tool binaries are installed in: /opt/intel/opencl-1.2-3.0.67279/bin&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2013 18:46:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940072#M1717</guid>
      <dc:creator>Noah_R_</dc:creator>
      <dc:date>2013-08-13T18:46:00Z</dc:date>
    </item>
    <item>
      <title> </title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940073#M1718</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Apologies for the probably-obvious question: on this page:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://software.intel.com/en-us/vcsource/tools/opencl" target="_blank"&gt;http://software.intel.com/en-us/vcsource/tools/opencl&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;It says OpenCL SDK is available for "&amp;nbsp;&lt;SPAN style="font-family: Verdana, Arial, sans-serif; line-height: 19.5px;"&gt;Ubuntu* 12.04 (Host&lt;/SPAN&gt;&lt;SUP style="font-family: Verdana, Arial, sans-serif;"&gt;2&lt;/SUP&gt;&lt;SPAN style="font-family: Verdana, Arial, sans-serif; line-height: 19.5px;"&gt;) " &amp;nbsp;- does that imply you can develop on that platform, but cannot execute?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Thanks -&lt;/P&gt;

&lt;P&gt;Michael&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Apr 2014 16:46:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940073#M1718</guid>
      <dc:creator>Anonymous35</dc:creator>
      <dc:date>2014-04-12T16:46:11Z</dc:date>
    </item>
    <item>
      <title>Is there an available OpenCL</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940074#M1719</link>
      <description>&lt;P&gt;Is there an available OpenCL sdk somewhere at Intel.&amp;nbsp; I've been playing around with the page where I keep getting sent, and all I can get is IDEs etc...&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I'm running Ununtu 14.10 on an Intel Xeon(R) ES-2630&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Mitch&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2015 00:50:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940074#M1719</guid>
      <dc:creator>Mitch_O_</dc:creator>
      <dc:date>2015-06-09T00:50:30Z</dc:date>
    </item>
    <item>
      <title>Mitch,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940075#M1720</link>
      <description>&lt;P&gt;Mitch,&lt;/P&gt;

&lt;P&gt;You can download OpenCL runtime for Ubuntu here: &lt;A href="https://software.intel.com/en-us/articles/opencl-drivers#ubuntu64"&gt;https://software.intel.com/en-us/articles/opencl-drivers#ubuntu64&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;And &lt;SPAN&gt;&lt;STRONG&gt;Intel® Code Builder for OpenCL™ API 2015 for Ubuntu* (64-bit)&amp;nbsp;&lt;/STRONG&gt;here&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;A href="https://software.intel.com/en-us/articles/intel-code-builder-for-opencl-api"&gt;https://software.intel.com/en-us/articles/intel-code-builder-for-opencl-api&lt;/A&gt; .&lt;/P&gt;

&lt;P&gt;That's about it.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jun 2015 01:10:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940075#M1720</guid>
      <dc:creator>Robert_I_Intel</dc:creator>
      <dc:date>2015-06-09T01:10:11Z</dc:date>
    </item>
    <item>
      <title>Hello Intel,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940076#M1721</link>
      <description>&lt;P&gt;Hello Intel,&lt;/P&gt;

&lt;P&gt;i want to install &lt;STRONG&gt;OpenCLTM Runtime 15.1 for Intel® CoreTM and Intel® Xeon® Processors&lt;/STRONG&gt; , on 14.04.1-Ubuntu&amp;nbsp; (64 bit) .&lt;/P&gt;

&lt;P&gt;My system specification are :Model Intel (R)core (TM) i5-2540 M CPU @2.60 GHz, Ubuntu 64 bit , GNU/Linux 2.6.24&lt;/P&gt;

&lt;P&gt;In release notes written that supported Operating Systems " Ubuntu 12.04&amp;nbsp; and 14.04 . But when i run the install_GUI , it show the message&amp;nbsp; operating system not supported.&lt;/P&gt;

&lt;P&gt;Please Help me , i am new on&amp;nbsp; intel&amp;nbsp; OpenCL&amp;nbsp; sdk .&lt;/P&gt;

&lt;P&gt;Reagds,&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2015 10:35:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940076#M1721</guid>
      <dc:creator>Zeshan_A_</dc:creator>
      <dc:date>2015-07-02T10:35:06Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940077#M1722</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;The OpenCL CPU runtime for Ubuntu OS comes with &lt;STRONG&gt;Intel OpenCL Code Builder for Ubuntu &lt;/STRONG&gt;package&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;A href="https://software.intel.com/en-us/articles/opencl-drivers#ubuntu64)" target="_blank"&gt;https://software.intel.com/en-us/articles/opencl-drivers#ubuntu64)&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;The version you're trying to install is supported on SLES and RHEL operating systems only.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;We'll modify the release notes to better clarify it. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Uri&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2015 11:54:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940077#M1722</guid>
      <dc:creator>Uri_L_Intel</dc:creator>
      <dc:date>2015-07-02T11:54:52Z</dc:date>
    </item>
    <item>
      <title>Hallo Uri,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940078#M1723</link>
      <description>&lt;P&gt;Hallo Uri,&lt;/P&gt;

&lt;P&gt;Thank you for response,&lt;/P&gt;

&lt;P&gt;i tried to install your given link "I&lt;STRONG&gt;ntel OpenCL Code Builder for Ubuntu &lt;/STRONG&gt;package&amp;nbsp;(&lt;A href="https://software.intel.com/en-us/articles/opencl-drivers#ubuntu64"&gt;https://software.intel.com/en-us/articles/opencl-drivers#ubuntu64&lt;/A&gt;)" , but still give the message in installing Mode " Unsupported Operating System,&amp;nbsp; Does Intel Code builder for ubuntu &lt;STRONG&gt;support&amp;nbsp; only&lt;/STRONG&gt; 12.04 LTE&amp;nbsp; OS.&lt;/P&gt;

&lt;P&gt;i am try to install&amp;nbsp; on &lt;STRONG&gt;14.04.1-Ubuntu&amp;nbsp; (64 bit) . &lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;1) extract the tar IntelOpenCL SDK.&lt;/P&gt;

&lt;P&gt;2) run the install_GUI .&lt;/P&gt;

&lt;P&gt;("Message : Unsupported OS Version ")&lt;/P&gt;

&lt;P&gt;What should i do ,&amp;nbsp; should i change my ubuntu version&amp;nbsp; or have intel any solution for compatibility with new version of ubuntu (&lt;STRONG&gt;14.04.1-Ubuntu&amp;nbsp; (64 bit) &lt;/STRONG&gt;).&lt;/P&gt;

&lt;P&gt;it will be the great help&amp;nbsp; for me ,if you advise me to install the intelOpenCL SDK&amp;nbsp;&amp;nbsp; steps on my system.&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Zeshan&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2015 08:55:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940078#M1723</guid>
      <dc:creator>Zeshan_A_</dc:creator>
      <dc:date>2015-07-06T08:55:28Z</dc:date>
    </item>
    <item>
      <title>The following steps worked</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940079#M1724</link>
      <description>The following steps worked for me on Ubuntu 15.04 based on Noah's instructions above:

&lt;B&gt;$ sudo apt-get install -y rpm alien libnuma1&lt;/B&gt;

&lt;B&gt;$ tar -xvf intel_code_builder_for_opencl_2015_ubuntu_5.0.0.43_x64.tgz&lt;/B&gt;
&lt;B&gt;$ cd intel_code_builder_for_opencl_2015_ubuntu_5.0.0.43_x64&lt;/B&gt;

&lt;B&gt;$ sudo rpm --import PUBLIC_KEY.PUB&lt;/B&gt;

&lt;B&gt;$ cd rpm&lt;/B&gt;

&lt;B&gt;$ fakeroot alien --to-deb opencl-1.2-base-5.0.0.43-1.x86_64.rpm&lt;/B&gt;
&lt;B&gt;$ fakeroot alien --to-deb opencl-1.2-intel-cpu-5.0.0.43-1.x86_64.rpm&lt;/B&gt;

&lt;B&gt;$ sudo dpkg -i opencl-1.2-base_5.0.0.43-2_amd64.deb&lt;/B&gt;
&lt;B&gt;$ sudo dpkg -i opencl-1.2-intel-cpu_5.0.0.43-2_amd64.deb&lt;/B&gt;

The above installs the library files and installable client driver registration in /opt/intel/opencl-1.2-5.0.0.43.
Two more steps were needed to run an OpenCL program.

Add library to search path:
&lt;B&gt;$ sudo nano /etc/ld.so.conf.d/intelOpenCL.conf&lt;/B&gt;
Add the line:
&lt;B&gt;/opt/intel/opencl-1.2-5.0.0.43/lib64&lt;/B&gt;

Link to the intel icd file in the expected location:
&lt;B&gt;$ sudo ln /opt/intel/opencl-1.2-5.0.0.43/etc/intel64.icd /etc/OpenCL/vendors/intel64.icd
$ sudo ldconfig

$ sudo clinfo&lt;/B&gt;
Number of platforms                               2
  Platform Name                                   NVIDIA CUDA
  Platform Vendor                                 NVIDIA Corporation
  Platform Version                                OpenCL 1.1 CUDA 6.5.45
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_byte_addressable_store cl_khr_icd cl_khr_gl_sharing cl_nv_compiler_options cl_nv_device_attribute_query cl_nv_pragma_unroll cl_nv_copy_opts 
  Platform Extensions function suffix             NV

  Platform Name                                   Intel(R) OpenCL
  Platform Vendor                                 Intel(R) Corporation
  Platform Version                                OpenCL 1.2 LINUX
  Platform Profile                                FULL_PROFILE
  Platform Extensions                             cl_khr_icd cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_byte_addressable_store cl_khr_depth_images cl_khr_3d_image_writes cl_intel_exec_by_local_thread cl_khr_spir cl_khr_fp64 
  Platform Extensions function suffix             INTEL</description>
      <pubDate>Mon, 20 Jul 2015 11:07:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940079#M1724</guid>
      <dc:creator>Roger_B_1</dc:creator>
      <dc:date>2015-07-20T11:07:00Z</dc:date>
    </item>
    <item>
      <title>I definitely have problems</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940080#M1725</link>
      <description>&lt;P&gt;I definitely have problems with the newest version intel_sdk_for_opencl_2016_ubuntu_6.0.0.1049_x64.&lt;BR /&gt;
	it seems that when it comes to "Link to the intel icd file in the expected location:" there is no file /opet/intel/opencl*/etc/*icd to link.&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;jaky@jaky-Satellite-S55-A:/opt/intel$ ls
intel-opencl-1.2-6.0.0.1049  ism                    opencl-1.2-sdk-6.0.0.1049
intel_sdp_products.db        opencl-1.2-6.0.0.1049
jaky@jaky-Satellite-S55-A:/opt/intel$ ls opencl-1.2-6.0.0.1049/
lib64
jaky@jaky-Satellite-S55-A:/opt/intel$ ls opencl-1.2-6.0.0.1049/lib64/
libOpenCL.so  libOpenCL.so.1  libOpenCL.so.1.2
jaky@jaky-Satellite-S55-A:/opt/intel$ 
&lt;/PRE&gt;

&lt;P&gt;&lt;BR /&gt;
	&lt;BR /&gt;
	Is there any detailed guide for this specific version to follow?&amp;nbsp;&lt;BR /&gt;
	Is there a way to clean the installation to start from the scratch?&lt;BR /&gt;
	Thank you in advance.&lt;BR /&gt;
	Jacopo&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2016 15:14:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940080#M1725</guid>
      <dc:creator>Jacopo_R_</dc:creator>
      <dc:date>2016-03-04T15:14:51Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940081#M1726</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am also facing the same problem as Jacopo. I cannot find icd files and also in rpm folder I cannot find opencl-1.2-intel-cpu-*.rpm. Can anyone help me how to solve this problem?&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Nishma Laitonjam&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 17:31:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940081#M1726</guid>
      <dc:creator>nishma_l_</dc:creator>
      <dc:date>2016-04-26T17:31:00Z</dc:date>
    </item>
    <item>
      <title>Hi Nishma,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940082#M1727</link>
      <description>&lt;P&gt;Hi Nishma,&lt;/P&gt;

&lt;P&gt;You will have to install a CPU runtime for Ubuntu separately: &lt;A href="https://software.intel.com/en-us/articles/opencl-drivers#16.1ubuntu64"&gt;https://software.intel.com/en-us/articles/opencl-drivers#16.1ubuntu64&lt;/A&gt; .&lt;/P&gt;

&lt;P&gt;I installed GPU runtime that came with the SDK first, then installed the CPU runtime above, then set LD_LIBRARY_PATH to point to the location of CPU OpenCL runtime dlls, and then I can see both CPU and GPU devices.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 15:33:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940082#M1727</guid>
      <dc:creator>Robert_I_Intel</dc:creator>
      <dc:date>2016-04-27T15:33:25Z</dc:date>
    </item>
    <item>
      <title>Hi Robert,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940083#M1728</link>
      <description>&lt;P&gt;Hi Robert,&lt;/P&gt;

&lt;P&gt;Thanks for your help, now I can find .icd file. But when I run (sudo clinfo), I got the following error :-&lt;BR /&gt;
	modprobe: ERROR: could not insert 'fglrx': No such device&lt;BR /&gt;
	Error! Fail to load fglrx kernel module! Maybe you can switch to root user to load kernel module directly&lt;BR /&gt;
	modprobe: ERROR: could not insert 'fglrx': No such device&lt;BR /&gt;
	Error! Fail to load fglrx kernel module! Maybe you can switch to root user to load kernel module directly&lt;BR /&gt;
	modprobe: ERROR: could not insert 'fglrx': No such device&lt;BR /&gt;
	Error! Fail to load fglrx kernel module! Maybe you can switch to root user to load kernel module directly&lt;/P&gt;

&lt;P&gt;I am very grateful, if you can help me with this also. Thank you for your time.&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Nishma Laitonjam&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 11:22:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940083#M1728</guid>
      <dc:creator>nishma_l_</dc:creator>
      <dc:date>2016-04-28T11:22:49Z</dc:date>
    </item>
    <item>
      <title>Hi Nishma,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940084#M1729</link>
      <description>&lt;P&gt;Hi Nishma,&lt;/P&gt;

&lt;P&gt;I was unable to run clinfo either: different error though. Try to get Intel samples for Linux &lt;A href="https://software.intel.com/en-us/intel-opencl-support/code-samples"&gt;https://software.intel.com/en-us/intel-opencl-support/code-samples&lt;/A&gt; and build the CapsBasic one. You can also try to get it here: &lt;A href="https://software.intel.com/en-us/articles/caps-basic"&gt;https://software.intel.com/en-us/articles/caps-basic&lt;/A&gt; - build it and run it and let me know if that worked for you. Make sure to add /opt/intel/OpenCL-1.2-5.2.0.10002/lib64 to your LD_LIBRARY_PATH.&lt;/P&gt;

&lt;P&gt;Let me know how it goes.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 16:50:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940084#M1729</guid>
      <dc:creator>Robert_I_Intel</dc:creator>
      <dc:date>2016-04-28T16:50:38Z</dc:date>
    </item>
    <item>
      <title>Hi Robert,</title>
      <link>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940085#M1730</link>
      <description>&lt;P&gt;Hi Robert,&lt;/P&gt;

&lt;P&gt;When I run ./capsbasic, I get the following message&lt;/P&gt;

&lt;P&gt;modprobe: ERROR: could not insert 'fglrx_updates': No such device&lt;BR /&gt;
	Error: Fail to load fglrx kernel module!&lt;BR /&gt;
	Error! Fail to load fglrx kernel module! Maybe you can switch to root user to load kernel module directly&lt;BR /&gt;
	modprobe: ERROR: could not insert 'fglrx_updates': No such device&lt;BR /&gt;
	Error: Fail to load fglrx kernel module!&lt;BR /&gt;
	Error! Fail to load fglrx kernel module! Maybe you can switch to root user to load kernel module directly&lt;BR /&gt;
	modprobe: ERROR: could not insert 'fglrx_updates': No such device&lt;BR /&gt;
	Error: Fail to load fglrx kernel module!&lt;BR /&gt;
	Error! Fail to load fglrx kernel module! Maybe you can switch to root user to load kernel module directly&lt;BR /&gt;
	Number of available platforms: 2&lt;BR /&gt;
	Platform names:&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; [0] Intel(R) OpenCL [Selected]&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; [1] AMD Accelerated Parallel Processing&lt;BR /&gt;
	Number of devices available for each type:&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_TYPE_CPU: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_TYPE_GPU: 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_TYPE_ACCELERATOR: 0&lt;/P&gt;

&lt;P&gt;*** Detailed information for each device ***&lt;/P&gt;

&lt;P&gt;CL_DEVICE_TYPE_CPU[0]&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_NAME: Intel(R) Core(TM) i5 CPU&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M 540&amp;nbsp; @ 2.53GHz&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_AVAILABLE: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_VENDOR: Intel(R) Corporation&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_PROFILE: FULL_PROFILE&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_VERSION: OpenCL 1.2 (Build 10002)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DRIVER_VERSION: 1.2.0.10002&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_OPENCL_C_VERSION: OpenCL C 1.2&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_MAX_COMPUTE_UNITS: 4&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_MAX_CLOCK_FREQUENCY: 2530&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_MAX_WORK_GROUP_SIZE: 8192&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_ADDRESS_BITS: 64&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_MEM_BASE_ADDR_ALIGN: 1024&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_MAX_MEM_ALLOC_SIZE: 2056365056&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_GLOBAL_MEM_SIZE: 8225460224&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE: 131072&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_GLOBAL_MEM_CACHE_SIZE: 262144&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE: 64&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_LOCAL_MEM_SIZE: 32768&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_PROFILING_TIMER_RESOLUTION: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_IMAGE_SUPPORT: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_ERROR_CORRECTION_SUPPORT: 0&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_HOST_UNIFIED_MEMORY: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_EXTENSIONS: cl_khr_icd cl_khr_global_int32_base_atomics cl_khr_global_int32_extended_atomics cl_khr_local_int32_base_atomics cl_khr_local_int32_extended_atomics cl_khr_byte_addressable_store cl_khr_depth_images cl_khr_3d_image_writes cl_intel_exec_by_local_thread cl_khr_spir cl_khr_fp64&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE: 1&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_NATIVE_VECTOR_WIDTH_INT: 4&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG: 2&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT: 4&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE: 2&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Nishma&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2016 23:56:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/OpenCL-for-CPU/Ubuntu-version-of-OpenCL/m-p/940085#M1730</guid>
      <dc:creator>nishma_l_</dc:creator>
      <dc:date>2016-04-28T23:56:18Z</dc:date>
    </item>
  </channel>
</rss>

