diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-03-10 18:47:02 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-03-10 18:47:02 +0100 |
commit | 96ab233df7eefd4c868a9e9628b834458e9f18d3 (patch) | |
tree | ee28a833f9126245d394bf5b2674c7ced3a3bba8 /gnu/packages/benchmark.scm | |
parent | b4d7689f9255b93b9ea02e01dc490f1416f77782 (diff) | |
parent | a4de1a651e75c9b9d5e6bdb993f5bd5f74875d49 (diff) | |
download | patches-96ab233df7eefd4c868a9e9628b834458e9f18d3.tar patches-96ab233df7eefd4c868a9e9628b834458e9f18d3.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/benchmark.scm')
-rw-r--r-- | gnu/packages/benchmark.scm | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm index 43d42b37ad..f4bad73dc7 100644 --- a/gnu/packages/benchmark.scm +++ b/gnu/packages/benchmark.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Dave Love <fx@gnu.org> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> -;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org> ;;; ;;; This file is part of GNU Guix. @@ -168,3 +168,28 @@ Efficiency of the MPI implementation. (license license:cpl1.0))) (define-public imb-openmpi (imb openmpi)) + +(define-public multitime + (package + (name "multitime") + (version "1.4") + (source (origin + (method url-fetch) + (uri (string-append "https://tratt.net/laurie/src/" + "multitime/releases/" + "multitime-" version ".tar.gz")) + (sha256 + (base32 + "0iyfsdrbyqa7a4ifrh19l9a48hgv7ld6m0d8yf9bkl12q0qw91fx")))) + (build-system gnu-build-system) + (arguments '(#:tests? #f)) ; there are no tests + (home-page "https://tratt.net/laurie/src/multitime/") + (synopsis "Time command execution over multiple executions") + (description + "The @code{time} utility is a simple and often effective way of measuring +how long a command takes to run (wall time). Unfortunately, running a command +once can give misleading timings. @code{multitime} is, in essence, a simple +extension to @code{time} which runs a command multiple times and prints the +timing means, standard deviations, mins, medians, and maxes having done so. +This can give a much better understanding of the command's performance.") + (license license:expat))) |