2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2021-03-22 19:46:52 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2021-03-22 19:46:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
class RMicrobenchmark(RPackage):
|
2022-02-22 01:22:33 +08:00
|
|
|
"""Accurate Timing Functions.
|
2021-03-22 19:46:52 +08:00
|
|
|
|
|
|
|
Provides infrastructure to accurately measure and compare the execution
|
|
|
|
time of R expressions."""
|
|
|
|
|
2022-02-22 01:22:33 +08:00
|
|
|
cran = "microbenchmark"
|
2021-03-22 19:46:52 +08:00
|
|
|
|
2022-02-22 01:22:33 +08:00
|
|
|
version("1.4.9", sha256="443d2caf370ef33e4ac2773176ad9eb86f8790f43b430968ef9647699dbbffd2")
|
2021-03-22 19:46:52 +08:00
|
|
|
version("1.4-7", sha256="268f13c6323dd28cc2dff7e991bb78b814a8873b4a73f4a3645f40423da984f6")
|