diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-03-22 06:46:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 12:46:52 +0100 |
commit | c9043b62589ed275d6fafcb0efff214f37fd16b8 (patch) | |
tree | 6824083da9a1f3cd5e7980da046eb2a34297e1a9 /var | |
parent | 346d880384075faad96b8612dfb94bef5792f846 (diff) | |
download | spack-c9043b62589ed275d6fafcb0efff214f37fd16b8.tar.gz spack-c9043b62589ed275d6fafcb0efff214f37fd16b8.tar.bz2 spack-c9043b62589ed275d6fafcb0efff214f37fd16b8.tar.xz spack-c9043b62589ed275d6fafcb0efff214f37fd16b8.zip |
r-microbenchmark: new package (#22440)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/r-microbenchmark/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-microbenchmark/package.py b/var/spack/repos/builtin/packages/r-microbenchmark/package.py new file mode 100644 index 0000000000..43c54f2978 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-microbenchmark/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2021 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 import * + + +class RMicrobenchmark(RPackage): + """Accurate Timing Functions + + Provides infrastructure to accurately measure and compare the execution + time of R expressions.""" + + homepage = "https://github.com/joshuaulrich/microbenchmark/" + cran = "microbenchmark" + + version('1.4-7', sha256='268f13c6323dd28cc2dff7e991bb78b814a8873b4a73f4a3645f40423da984f6') |