diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-05-13 16:53:54 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-05-13 17:01:01 +0200 |
commit | 9e948013cda13b53534fb59f85cc5bb29afcfcf1 (patch) | |
tree | c5744e327d908d0447075c0fb1dc25680c2b47bb | |
parent | c43835f485ffab55db62f01c8b2bfa569832af19 (diff) | |
download | guix-9e948013cda13b53534fb59f85cc5bb29afcfcf1.tar.gz guix-9e948013cda13b53534fb59f85cc5bb29afcfcf1.zip |
gnu: Add r-bigparallelr.
* gnu/packages/cran.scm (r-bigparallelr): New variable.
Change-Id: I3667c9ae8dce38b8501e8427da96091be0ce7162
-rw-r--r-- | gnu/packages/cran.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b256e6405e..46d47eb772 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -725,6 +725,34 @@ bigmemory and synchronicity packages.") ;; Users can choose either LGPLv3 or ASL2.0. (license (list license:lgpl3 license:asl2.0)))) +(define-public r-bigparallelr + (package + (name "r-bigparallelr") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "bigparallelr" version)) + (sha256 + (base32 "14rkcig4j93c231sfm43331ykmvxjx2fiz5nhblj2rfzkxli4css")))) + (properties `((upstream-name . "bigparallelr"))) + (build-system r-build-system) + (propagated-inputs (list r-bigassertr + r-doparallel + r-flock + r-foreach + r-parallelly + r-rhpcblasctl)) + (native-inputs (list r-testthat)) + (home-page "https://github.com/privefl/bigparallelr") + (synopsis "Easy parallel tools") + (description + "This package provides utility functions for easy parallelism in R. This +includes some reexports from other packages, utility functions for splitting +and parallelizing over blocks, and choosing and setting the number of cores +used.") + (license license:gpl3))) + (define-public r-bigreadr (package (name "r-bigreadr") |