summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-dorng/package.py
blob: 5fa6d60bb2415978706bb688d3f331b107fa80ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class RDorng(RPackage):
    """Generic Reproducible Parallel Backend for 'foreach' Loops.

    Provides functions to perform reproducible parallel foreach loops, using
    independent random streams as generated by L'Ecuyer's combined
    multiple-recursive generator (L'Ecuyer (1999),
    <doi:10.1287/opre.47.1.159>).  It enables to easily convert standard
    %dopar% loops into fully reproducible loops, independently of the number of
    workers, the task scheduling strategy, or the chosen parallel environment
    and associated foreach backend."""

    cran = "doRNG"

    version("1.8.6", sha256="5032ade083f1f9841ac2e8d4426faa07f189c25c0c338fa155c5dadbe5507de2")
    version("1.8.2", sha256="33e9d45b91b0fde2e35e911b9758d0c376049121a98a1e4c73a1edfcff11cec9")
    version("1.7.1", sha256="27533d54464889d1c21301594137fc0f536574e3a413d61d7df9463ab12a67e9")
    version("1.6.6", sha256="939c2282c72c0b89fc7510f4bff901a4e99007dc006f46762c8f594c0ecbd876")

    depends_on("r@3.0.0:", type=("build", "run"))
    depends_on("r-foreach", type=("build", "run"))
    depends_on("r-rngtools@1.3:", type=("build", "run"))
    depends_on("r-rngtools@1.5:", type=("build", "run"), when="@1.8.2:")
    depends_on("r-iterators", type=("build", "run"))

    depends_on("r-pkgmaker@0.20:", type=("build", "run"), when="@:1.7.1")