Intel opencl runtime linux

Arch Linux User Repository

Package Details: intel-opencl-runtime 1:18.1.0.015-3

Package Actions

Git Clone URL: https://aur.archlinux.org/intel-opencl-runtime.git (read-only, click to copy)
Package Base: intel-opencl-runtime
Description: OpenCL runtime for Intel Core and Xeon processors
Upstream URL: https://software.intel.com/content/www/us/en/develop/articles/opencl-drivers.html
Keywords: intel opencl
Licenses: custom:intel
Provides: opencl-driver, opencl-intel
Submitter: dthpham
Maintainer: None
Last Packager: Midna
Votes: 52
Popularity: 0.89
First Submitted: 2015-08-16 02:54 (UTC)
Last Updated: 2021-05-08 10:39 (UTC)

Dependencies (5)

  • intel-tbb (tbb2019, tbb2020, onetbb-git, onetbb)
  • ncurses5-compat-libs
  • numactl(numactl-git)
  • zlib(zlib-ng-compat-git, zlib-ng-compat, zlib-git)
  • intel-opencl-sdk(optional) – Intel SDK for OpenCL Applications

Required by (39)

  • arrayfire-git (requires opencl-driver) (optional)
  • butterflow(optional)
  • caffe-opencl-git (requires opencl-driver)
  • computecpp (requires opencl-driver)
  • cpu-x (requires opencl-driver) (optional)
  • cpu-x-git (requires opencl-driver) (optional)
  • davinci-resolve (requires opencl-driver)
  • davinci-resolve-beta (requires opencl-driver)
  • davinci-resolve-studio (requires opencl-driver)
  • davinci-resolve-studio-beta (requires opencl-driver)
  • dewobble (requires opencl-driver)
  • dewobble-git (requires opencl-driver)
  • foldingathome (requires opencl-driver) (optional)
  • foldingathome-beta (requires opencl-driver) (optional)
  • fusion-render-node (requires opencl-driver)
  • fusion-studio (requires opencl-driver)
  • gr-fosphor (requires opencl-driver)
  • gyroflow (requires opencl-driver)
  • gyroflow-bin (requires opencl-driver) (optional)
  • gyroflow-git (requires opencl-driver) (optional)
  • Show 19 more.

Sources (1)

Latest Comments

Midna commented on 2022-06-01 07:53 (UTC)

Sources match so yeah. I believe I had issues with that package back then but I don’t recall which. Either it didn’t build or I didn’t get it working on my system.

If the other package functions, then this one may be obsolete and thus trashable.

wpd commented on 2022-06-01 07:27 (UTC)

@Midna I found this package https://aur.archlinux.org/packages/intel-cpu-runtime, is this the next release you were talking about?

Читайте также:  Kali linux загрузка процессора

Midna commented on 2022-05-31 20:52 (UTC) (edited on 2022-05-31 20:54 (UTC) by Midna)

@wpd Yeah, an Intel account is required to get the direct download URLs of the packages if I recall correctly.

EDIT: You might want to unpin my comment as well. I cannot seem to do it anymore as you’ve taken ownership of the package.

wpd commented on 2022-05-31 11:18 (UTC)

@Midna I have experience with repacking debs and OpenCL generally. Can I adopt this package? How did you get the direct download URL? Did you register before getting the URL?

Midna commented on 2021-08-19 19:04 (UTC)

Leaving a note here, next releases are only released in RPM/DEB format, which significantly changes the installation process. I don’t really have the time to make the fixes but if you know how to convert RPM or DEB packages, you might want to look into it. There are ‘update-alternatives’ things to adapt.

Midna commented on 2021-05-08 10:41 (UTC)

@mmoziko Two years later, and since I noticed the same CPU/GPU compatibility issue, I just updated the package again to rename intel.icd to intel-cpu.icd, allowing for the package to be installed with intel-compute-runtime, which provides OpenCL for integrated GPUs on 7th generation CPUs.

Midna commented on 2021-05-07 21:45 (UTC)

@dankamongmen It’s fine; dunno why this was abandoned though.

Midna commented on 2021-05-07 21:44 (UTC)

@Archange It’s fine; I didn’t see your name in the Git log however; were you maintaining the package? It was marked as orphan.

dankamongmen commented on 2021-05-07 21:41 (UTC)

thanks a lot for cleaning up my mistake, @midna! [shame]

Midna commented on 2021-05-07 21:36 (UTC)

If the package turns out out-of-date, please flag the package as out-of-date. I receive notification emails automatically.

Copyright © 2004-2023 aurweb Development Team.

AUR packages are user produced content. Any use of the provided files is at your own risk.

Источник

cmey / install-intel-opencl-drivers-for-linux.sh

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

Читайте также:  Change mode linux directory
# get OpenCL driver automated installer (installs kernel 4.7)
curl https://software.intel.com/sites/default/files/managed/f6/77/install_OCL_driver.sh_.txt > install_OCL_driver.sh
chmod +x install_OCL_driver.sh
# install OpenCL driver
sudo ./install_OCL_driver.sh install
# check
ls /boot/vmlinuz- * intel *

This installs linux kernel 4.7 but we want 4.13.0-36-generic

Test OpenCL status with: Intel System Analyzer

curl https://software.intel.com/system/files/managed/d4/4d/sys_analyzer_linux.py_.tgz > sys_analyzer_linux.py_.tgz tar -xvzf sys_analyzer_linux.py_.tgz python sys_analyzer_linux.py -v 

Should see at the bottom:
[ OK ] OpenCL check:platform:Intel(R) OpenCL GPU OK CPU OK

Manual Intel OpenCL Drivers installation, without installing(and patching) an old kernel (4.7)

Christophe’s previous step before you follow the guide below:

curl http://registrationcenter-download.intel.com/akdlm/irc_nas/11396/SRB5.0_linux64.zip > SRB5.0_linux64.zip unzip SRB5.0_linux64.zip 
sudo apt-get update sudo apt-get install xz-utils mkdir intel-opencl tar -C intel-opencl -Jxf intel-opencl-r5.0-63503.x86_64.tar.xz tar -C intel-opencl -Jxf intel-opencl-devel-r5.0-63503.x86_64.tar.xz tar -C intel-opencl -Jxf intel-opencl-cpu-r5.0-63503.x86_64.tar.xz sudo cp -R intel-opencl/* / sudo ldconfig 

Print Ubuntu version:
lsb_release -a
Print kernel version that’s running:
uname -r
Print kernel versions installed:
dpkg —list | grep linux-image

Verify CPU model name is Intel:
grep -m 1 name /proc/cpuinfo , should be:
model name : Intel(R) Core(TM) i7-7567U CPU @ 3.50GHz

Verify GPU is Intel:
lspci -nn | grep VGA , should be:
00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:5927] (rev 06)

make sure you add your user to video group by:
sudo usermod -a -G video $LOGNAME

# from https://github.com/intel-iot-devkit/reference-implementation/tree/master/face-access-control # get install_OCL_driver2_sh.tgz web to https://software.intel.com/file/593325/download tar xf install_OCL_driver2_sh.tgz mkdir opencl-temp sudo ./install_OCL_driver2.sh install --workspace opencl-temp # answer No 

A new version of the Intel OpenCL driver for Linux is out.
See: https://github.com/intel/compute-runtime/releases

It should now be as simple as:

wget https://github.com/intel/compute-runtime/releases/download/18.33.11309/intel-opencl_18.33.11309_amd64.deb dpkg -i intel-opencl_18.33.11309_amd64.deb apt-get install -f 

Note this driver is advertised to only work on Gen8+ hardware.

MBP 15 Mid 2014, has i7-4980HQ which contains an Iris Pro Graphics 5200 | GT3e

clinfo: Device Name Iris Pro 
Release date: 2014 Microarchitecture: Haswell Core Name: Crystal Well Integrated GPU: Intel Iris Pro 5200 

«Crystalwell is the codename of the L4 cache (eDRAM) featured in the Iris Pro-enabled Haswell CPUs. According to Intel, this superior quality memory is responsible for the increased performance of Iris Pro graphics.»
(source)

Читайте также:  Удаление wps office linux

MBP 13 touch bar Mid 2017, has i7-7567U which contains an Iris Plus Graphics 650

clinfo: Device Name Intel(R) HD Graphics 
Release date: 2017 Core Name: Kaby Lake Microarchitecture: Kaby Lake Integrated GPU: Intel® Iris™ Plus Graphics 650 

This file seems not exist any more

wget http://registrationcenter-download.intel.com/akdlm/irc_nas/11396/SRB5.0_linux64.zip
—2019-05-27 15:54:21— http://registrationcenter-download.intel.com/akdlm/irc_nas/11396/SRB5.0_linux64.zip
Resolving registrationcenter-download.intel.com (registrationcenter-download.intel.com). 104.124.188.30, 2600:1406:d000:183::b, 2600:1406:d000:1bb::b
Connecting to registrationcenter-download.intel.com (registrationcenter-download.intel.com)|104.124.188.30|:80. connected.
HTTP request sent, awaiting response. 404 Not Found
2019-05-27 15:54:25 ERROR 404: Not Found.

marco@mr-pc: $ sudo snap install mailspring
[sudo] senha para marco:
snap «mailspring» is already installed, see ‘snap help refresh’
marco@mr-pc: $ get OpenCL driver automated installer (installs kernel 4.7)
bash: erro de sintaxe próximo ao token inesperado (‘ marco@mr-pc:~$ get OpenCL driver automated installer (installs kernel 4.7) bash: erro de sintaxe próximo ao token inesperado (‘
marco@mr-pc: $ get OpenCL driver automated installer (installs kernel 4.7)
bash: erro de sintaxe próximo ao token inesperado `(‘
marco@mr-pc: $ curl https://software.intel.com/sites/default/files/managed/f6/77/install_OCL_driver.sh_.txt > install_OCL_driver.sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 28973 100 28973 0 0 101k 0 —:—:— —:—:— —:—:— 101k
marco@mr-pc: $ chmod +x install_OCL_driver.sh
marco@mr-pc: $ sudo ./install_OCL_driver.sh install
ERROR: this script is supported only on Ubuntu 14.04 and 16.04.

Hi Guys need help .. i have hp250g4 with intel processor Intel(R) Celeron(R) N3050 @ 1.60GHz x 2
Gpu Intel Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller i recive this error from software

ATTENTION! No OpenCL-compatible or CUDA-compatible platform found.

You are probably missing the OpenCL or CUDA runtime installation.

  • AMD GPUs on Linux require this driver:
    «RadeonOpenCompute (ROCm)» Software Platform (3.1 or later)
  • Intel CPUs require this runtime:
    «OpenCL Runtime for Intel Core and Intel Xeon Processors» (16.1.1 or later)
  • NVIDIA GPUs require this runtime and/or driver (both):
    «NVIDIA Driver» (440.64 or later)
    «CUDA Toolkit» (9.0 or later)

How to install this driver. I have linux debian based «Deepin»»
Thx

Источник

Оцените статью
Adblock
detector