guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

65/65: gnu: Add lparallel.


From: Pierre Neidhardt
Subject: 65/65: gnu: Add lparallel.
Date: Fri, 19 Oct 2018 11:59:53 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit e2e5004f6ee4f210440e4c8a2466185c463b8dbb
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Oct 10 15:07:19 2018 +0200

    gnu: Add lparallel.
    
    * gnu/packages/lisp.scm (cl-lparallel, ecl-lparallel, sbcl-lparallel): New 
variables.
---
 gnu/packages/lisp.scm | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 8e201f3..bc62160 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -3484,3 +3484,48 @@ currently targeting WebKit version 2.  The WebKitGTK+ 
library adds web
 browsing capabilities to an application, leveraging the full power of the
 WebKit browsing engine.")
       (license license:expat))))
+
+(define-public sbcl-lparallel
+  (package
+    (name "sbcl-lparallel")
+    (version "2.8.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/lmj/lparallel/";)
+             (commit (string-append "lparallel-" version))))
+       (file-name (git-file-name "lparallel" version))
+       (sha256
+        (base32
+         "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
+    (build-system asdf-build-system/sbcl)
+    (inputs
+     `(("alexandria" ,sbcl-alexandria)
+       ("bordeaux-threads" ,sbcl-bordeaux-threads)
+       ("trivial-garbage" ,sbcl-trivial-garbage)))
+    (home-page "https://lparallel.org/";)
+    (synopsis "Parallelism for Common Lisp")
+    (description
+     "@command{lparallel} is a library for parallel programming in Common
+Lisp, featuring:
+
address@hidden
address@hidden a simple model of task submission with receiving queue,
address@hidden constructs for expressing fine-grained parallelism,
address@hidden asynchronous condition handling across thread boundaries,
address@hidden parallel versions of map, reduce, sort, remove, and many others,
address@hidden promises, futures, and delayed evaluation constructs,
address@hidden computation trees for parallelizing interconnected tasks,
address@hidden bounded and unbounded FIFO queues,
address@hidden high and low priority tasks,
address@hidden task killing by category,
address@hidden integrated timeouts.
address@hidden itemize\n")
+    (license license:expat)))
+
+(define-public cl-lparallel
+  (sbcl-package->cl-source-package sbcl-lparallel))
+
+(define-public ecl-lparallel
+  (sbcl-package->ecl-package sbcl-lparallel))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]