mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add r-pbdmpi.
* gnu/packages/cran.scm (r-pbdmpi): New variable.
This commit is contained in:
parent
d1f1947a46
commit
c592eb6980
1 changed files with 28 additions and 0 deletions
|
@ -31954,6 +31954,34 @@ (define-public r-qpdf
|
||||||
data you need the @code{pdftools} package.")
|
data you need the @code{pdftools} package.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public r-pbdmpi
|
||||||
|
(package
|
||||||
|
(name "r-pbdmpi")
|
||||||
|
(version "0.4-4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "pbdMPI" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"006pm2yn4mdrpwhfflqcybzv41lz7zssrjrcpq5g98zf60p9c07a"))))
|
||||||
|
(properties `((upstream-name . "pbdMPI")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'mpi-setup
|
||||||
|
,%openmpi-setup))))
|
||||||
|
(inputs (list openmpi))
|
||||||
|
(propagated-inputs (list r-float r-rlecuyer))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(home-page "https://pbdr.org/")
|
||||||
|
(synopsis "Programming with Big Data -- Interface to MPI")
|
||||||
|
(description
|
||||||
|
"This package provides an efficient interface to MPI by utilizing S4
|
||||||
|
classes and methods with a focus on @dfn{Single Program/Multiple Data} (SPMD)
|
||||||
|
parallel programming style, which is intended for batch parallel execution.")
|
||||||
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public r-pdftools
|
(define-public r-pdftools
|
||||||
(package
|
(package
|
||||||
(name "r-pdftools")
|
(name "r-pdftools")
|
||||||
|
|
Loading…
Reference in a new issue