Package Details: intel-opencl-sdk 2020.1.395-2

Git Clone URL: https://aur.archlinux.org/intel-opencl-sdk.git (read-only, click to copy)
Package Base: intel-opencl-sdk
Description: Intel SDK for OpenCL Applications
Upstream URL: https://software.intel.com/en-us/intel-opencl/download
Licenses: custom:intel
Submitter: big_gie
Maintainer: None
Last Packager: dankamongmen
Votes: 85
Popularity: 0.032068
First Submitted: 2011-05-13 13:53 (UTC)
Last Updated: 2020-05-27 18:30 (UTC)

Latest Comments

1 2 3 4 5 6 .. 12 Next › Last »

mookins commented on 2020-06-16 05:13 (UTC) (edited on 2020-06-16 05:33 (UTC) by mookins)

The URL listed in the PKGBUILD is incorrect for the sha256 checksum given.

http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/16625/intel_sdk_for_opencl_applications_2020.1.395.tar.gz is for CentOS operating systems and has the SHA256 checksum of 758078ac0cf12061b97cbde4692e886cf930ca96a92ba7dfb9c71dcce1b243f6.

http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/16624/intel_sdk_for_opencl_applications_2020.1.395.tar.gz id the package for Ubuntu and has the SHA256 checksum of 4b8a1e39888e9fb13f717ea6f91aaf6ae8677043ff59a95767fb2f5d10f73850 which agrees withe PKGBUILD.

Changes I made can be found at https://github.com/siyka-au/arch-linux-intel-opencl-sdk

zezadas commented on 2020-05-26 14:13 (UTC)

cpio is a dependency. please update deps.

dankamongmen commented on 2020-01-05 02:31 (UTC)

@ava1ar I'm interested in taking over this package. I maintain ~7 packages now, and am familiar with this one.

ava1ar commented on 2019-08-16 06:20 (UTC) (edited on 2019-08-16 06:20 (UTC) by ava1ar)

Packaging for version 2019 completely changed - now there is a GUI installer inside the package.

I don't have time to work on new PKGBUILD. Anyone interested to help?

New version is 2019.3.208

URL is http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/15345/intel_sdk_for_opencl_applications_${pkgver}.tar.gz

ava1ar commented on 2018-11-01 04:58 (UTC)

@alexbrinister

Package updated, thanks for the patch.

alexbrinister commented on 2018-08-14 00:04 (UTC) (edited on 2018-08-14 00:24 (UTC) by alexbrinister)

I get the following output after installing:

alexbrinister@alexbrinister-OryxPro ~ % ioc
/usr/sbin/ioc: line 9: /opt/intel/opencl-sdk/bin/ioc64.bin: No such file or directory

I think sdk_dir in ioc64 needs to be linked to the SDK directory instead of the top-level one. Patch: https://pastebin.com/Qvpv9dTC

ava1ar commented on 2018-01-31 09:42 (UTC)

Updated to 2017_7.0.0.2568 (thanks pedromundo for updated PKGBUILD)

Please note, I did NOT include libintelocl.so for OpenCL 2.1 - if you want it, please modify PKGBUILD before installing and uncomment corresponding lines (you may not need intel-opencl-runtime in this case, but this is not verified).

commented on 2018-01-30 19:45 (UTC)

NEW LINK : http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/12526/intel_sdk_for_opencl_2017_7.0.0.2568_x64.gz

UPDATE PLEASE

pedromundo commented on 2017-09-27 19:22 (UTC) (edited on 2017-09-27 19:23 (UTC) by pedromundo)

A heads-up for anyone that needs to use the latest version for OpenCL 2.1 support or whatever reason: I got it working by removing both the intel-opencl and intel-opencl-runtime and then changing the pkgbuild slightly to compensate for changes in the .tgz (the latest version includes an experimental libintelocl.so for OpenCL 2.1, thus I'm not sure where intel-opencl-runtime should still be a dependency) Below is my (somewhat hackish) PKGBUILD for 2017.7.0.0.2511 (tested to not break things with nvidia OpenCL, but I didn't test with intel gpu OpenCL, since I don't have access to a machine with IGP right now), feedback welcome. # Maintainer: ava1ar <maiL@ava1ar.me> # Contributor: Daniel Nagy <danielnagy at gmx de> # Contributor: Nicolas Bigaouette <nbigaouette@gmail.com> # Contributor: Vojtech "kralyk" Kral pkgname=intel-opencl-sdk pkgver=2017_7.0.0.2511 releasever=11705 pkgrel=1 pkgdesc="Intel SDK for OpenCL Applications" arch=('x86_64') url="https://software.intel.com/en-us/intel-opencl/download" license=('custom:intel') depends=('opencl-icd-loader' 'libpng12' 'opencl-headers') optdepends=('intel-opencl-runtime: OpenCL runtime for Intel Core and Xeon processors') install=intel-opencl-sdk.install source=(http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/${releasever}/intel_sdk_for_opencl_${pkgver}_x64.tgz) sha256sums=('8276bc9e4df2beb408014b169f604637dd83f465461bb0c61a7a99edbf03b740') package() { cd "${srcdir}"/intel_sdk_for_opencl_${pkgver}_x64/ # Copy license install -Dm644 EULA.txt "${pkgdir}"/usr/share/licenses/intel-opencl-sdk/license # Unpack rpms for i in rpm/*.rpm; do bsdtar -xf "$i"; done # Install files mkdir -p "${pkgdir}/opt/intel/opencl-sdk" cp -r opt/intel/opencl/* "${pkgdir}/opt/intel/opencl-sdk" # Register ICD mkdir -p "${pkgdir}/etc/OpenCL/vendors" echo "/opt/intel/opencl-sdk/exp-runtime-2.1/lib64/libintelocl_2_1.so" > "${pkgdir}/etc/OpenCL/vendors/intel.icd" # Cleanup rm -rf "${pkgdir}"/opt/intel/opencl-sdk/uninstall* # Fix runtime_lib_dir and sdk_dir sed -i -e 's|/etc/alternatives/opencl-intel-tools|/opt/intel/opencl-sdk|g' \ -e 's|$(dirname $(readlink /etc/alternatives/opencl-libOpenCL.so))|/opt/intel/opencl-runtime/lib64|g' \ "${pkgdir}"/opt/intel/opencl-sdk/SDK/bin/{KBServer64,ioc64} # Symlink binaries mkdir -p "${pkgdir}/usr/bin" ln -s "/opt/intel/opencl-sdk/SDK/bin/ioc64" "${pkgdir}/usr/bin/ioc" }

ailick commented on 2017-09-03 02:50 (UTC)

New Version http://registrationcenter-download.intel.com/akdlm/irc_nas/vcp/11705/intel_sdk_for_opencl_2017_7.0.0.2511_x64.tgz