1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-26 04:00:30 +02:00

gnu: Add opencl-headers-2022.

* gnu/packages/opencl.scm (opencl-headers-2022): New variable.
* gnu/packages/machine-learning.scm (tvm)[inputs]: Add
opencl-headers-2022; delete opencl-headers.

Merges guix/guix!1879

Change-Id: Ib4d73ad530e374669e34b4ea6744eeab8b8ef668
This commit is contained in:
Cayetano Santos
2026-01-28 21:05:00 +01:00
committed by Andreas Enge
parent a7f560f3b2
commit f422f735b2
2 changed files with 16 additions and 1 deletions

View File

@@ -4666,7 +4666,7 @@ the tensors contained therein.")
libxml2
llvm-19
opencl-clhpp
opencl-headers
opencl-headers-2022
rang
mesa
mesa-opencl

View File

@@ -83,6 +83,21 @@
(home-page "https://registry.khronos.org/OpenCL/")
(license license:asl2.0)))
(define-public opencl-headers-2022
(package
(inherit opencl-headers)
(name "opencl-headers")
(version "2022.09.30")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KhronosGroup/OpenCL-Headers")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0vzzkj5kd0invm5pvzlnhdl21n00jci6131a2cjviyz0vxp7xf2m"))))))
(define-public opencl-clhpp
(package
(name "opencl-clhpp")