guix-commits
[Top][All Lists]
Advanced

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

04/13: gnu: Add r-parallelmap.


From: guix-commits
Subject: 04/13: gnu: Add r-parallelmap.
Date: Mon, 3 Jul 2023 04:01:07 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 155e3f2e87956a91412a79f1462863da4630e6c5
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Fri Jun 23 13:48:47 2023 +0000

    gnu: Add r-parallelmap.
    
    * gnu/packages/cran.scm (r-parallelmap): New variable.
---
 gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b1eeb1ef53..22f2519a56 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2434,6 +2434,30 @@ programmed on.  A useful @code{OptPath} object (archive) 
to log function
 evaluations is also provided.")
     (license license:bsd-2)))
 
+(define-public r-parallelmap
+  (package
+    (name "r-parallelmap")
+    (version "1.5.1")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "parallelMap" version))
+              (sha256
+               (base32
+                "1qg7zpz5sd9jp8wzjqahkhipwj1jn192llwg06q4gv9mlcsac261"))))
+    (properties `((upstream-name . "parallelMap")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-bbmisc r-checkmate))
+    (home-page "https://parallelmap.mlr-org.com";)
+    (synopsis "Unified interface to parallelization backends")
+    (description
+     "This package provides a unified parallelization framework for multiple
+backends.  This package is designed for internal package and interactive
+usage.  The main operation is parallel mapping over lists.  It supports local,
+multicore, mpi and BatchJobs mode.  It allows tagging of the parallel
+operation with a level name that can be later selected by the user to switch
+on parallel execution for exactly this operation.")
+    (license license:bsd-2)))
+
 (define-public r-pheatmap
   (package
     (name "r-pheatmap")



reply via email to

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