me
/
guix
Archived
1
0
Fork 0

gnu: opensycl: Rename to adaptivecpp and update to 24.02.0.

* gnu/packages/sycl.scm (adaptivecpp): New variable.
(opensync): Redefine using DEPRECATED-PACKAGE.

Change-Id: I7ac3f49409d539962de34510ed9255021b795724
Signed-off-by: Christopher Baines <mail@cbaines.net>
master
Andy Tai 2024-05-10 23:56:28 -07:00 committed by Christopher Baines
parent e5fa18b628
commit cc212af83e
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 12 additions and 8 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Andy Tai <atai@atai.org> ;;; Copyright © 2023, 2024 Andy Tai <atai@atai.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -34,19 +34,19 @@
;; tests that require such devices are all disabled. ;; tests that require such devices are all disabled.
;; Check https://lists.gnu.org/archive/html/guix-devel/2018-04/msg00293.html ;; Check https://lists.gnu.org/archive/html/guix-devel/2018-04/msg00293.html
(define-public opensycl (define-public adaptivecpp
(package (package
(name "opensycl") (name "adaptivecpp")
(version "0.9.4") (version "24.02.0")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/OpenSYCL/OpenSYCL/") (url "https://github.com/AdaptiveCpp/AdaptiveCpp/")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0nynb93b68ghn1i1bsjvbbxpnh5b1yiw9jhhww1q1gi7w182x2g5")))) "0gfr0mr9shgf33bj5sfy6nv2vh7wdky333ryy2n5ikvhfvjmqc7m"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (list clang-15 llvm-15 python spirv-tools)) (native-inputs (list clang-15 llvm-15 python spirv-tools))
(inputs (list boost rocm-opencl-runtime spirv-headers)) (inputs (list boost rocm-opencl-runtime spirv-headers))
@ -54,6 +54,10 @@
(home-page "https://github.com/OpenSYCL/OpenSYCL") (home-page "https://github.com/OpenSYCL/OpenSYCL")
(synopsis "Implementation of the SYCL programming language for accelerators") (synopsis "Implementation of the SYCL programming language for accelerators")
(description (description
"Open SYCL is a modern SYCL implementation targeting CPUs and GPUs from all "AdaptiveCpp is aImplementation of SYCL and C++ standard parallelism
major vendors that supports many use cases and approaches for implementing SYCL") for CPUs and GPUs from all vendors, with independent, community-driven
compiler for C++-based heterogeneous programming models")
(license license:bsd-2))) (license license:bsd-2)))
(define-public opensycl
(deprecated-package "opensycl" adaptivecpp))