2016-08-13 12:11:35 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2021-11-05 23:56:36 +01:00
|
|
|
|
;;; Copyright © 2016, 2017, 2021 Marius Bakke <marius@gnu.org>
|
2017-10-03 20:14:50 +02:00
|
|
|
|
;;; Copyright © 2017 Dave Love <fx@gnu.org>
|
2021-03-11 17:25:24 +01:00
|
|
|
|
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-03-06 21:55:14 +01:00
|
|
|
|
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
2019-01-31 00:05:03 +01:00
|
|
|
|
;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org>
|
2019-06-14 23:07:56 +02:00
|
|
|
|
;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com>
|
2021-05-28 09:13:38 +02:00
|
|
|
|
;;; Copyright © 2019, 2021 Ludovic Courtès <ludo@gnu.org>
|
2020-02-22 00:37:23 +01:00
|
|
|
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
2020-10-23 15:11:52 +02:00
|
|
|
|
;;; Copyright © 2020 malte Frank Gerdes <malte.f.gerdes@gmail.com>
|
2021-02-18 14:28:57 +01:00
|
|
|
|
;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2020-12-20 14:19:04 +01:00
|
|
|
|
;;; Copyright © 2020 Greg Hogan <code@greghogan.com>
|
2021-05-08 15:03:05 +02:00
|
|
|
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
2016-08-13 12:11:35 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages benchmark)
|
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2019-01-31 00:05:03 +01:00
|
|
|
|
#:use-module (guix git-download)
|
2019-06-14 23:07:56 +02:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2016-08-13 12:11:35 +02:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2020-11-18 17:11:44 +01:00
|
|
|
|
#:use-module (guix build-system python)
|
2019-06-14 23:07:56 +02:00
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
|
#:use-module (gnu packages check)
|
2016-08-13 12:11:35 +02:00
|
|
|
|
#:use-module (gnu packages compression)
|
2017-02-01 13:35:32 +01:00
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
|
#:use-module (gnu packages maths)
|
2017-10-03 20:14:50 +02:00
|
|
|
|
#:use-module (gnu packages mpi)
|
2021-08-11 10:19:09 +02:00
|
|
|
|
#:use-module (gnu packages opencl)
|
2020-02-22 00:37:23 +01:00
|
|
|
|
#:use-module (gnu packages perl)
|
2017-01-15 19:36:25 +01:00
|
|
|
|
#:use-module (gnu packages python)
|
2019-12-04 08:56:36 +01:00
|
|
|
|
#:use-module (gnu packages python-science)
|
2020-11-18 17:11:44 +01:00
|
|
|
|
#:use-module (gnu packages python-web)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 14:21:30 +01:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2017-10-03 20:14:50 +02:00
|
|
|
|
#:use-module (ice-9 match))
|
2016-08-13 12:11:35 +02:00
|
|
|
|
|
|
|
|
|
(define-public fio
|
|
|
|
|
(package
|
|
|
|
|
(name "fio")
|
2021-12-20 02:34:18 +01:00
|
|
|
|
(version "3.29")
|
2016-08-13 12:11:35 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2019-12-07 05:19:39 +01:00
|
|
|
|
(uri (string-append "https://brick.kernel.dk/snaps/"
|
2018-11-07 16:10:58 +01:00
|
|
|
|
"fio-" version ".tar.bz2"))
|
2016-08-13 12:11:35 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-12-20 02:34:18 +01:00
|
|
|
|
"11k7ksksnb8lcbz0qdc9g7zlzaa0515j7kx4mlhk75sfs43v9zxc"))))
|
2016-08-13 12:11:35 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2021-11-05 23:56:36 +01:00
|
|
|
|
`(#:modules (,@%gnu-build-system-modules
|
|
|
|
|
(ice-9 textual-ports))
|
|
|
|
|
#:test-target "test"
|
2021-11-06 00:09:30 +01:00
|
|
|
|
#:configure-flags '("--disable-native") ;don't generate code for the build CPU
|
2016-08-13 12:11:35 +02:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
2021-11-06 00:09:30 +01:00
|
|
|
|
(lambda* (#:key (configure-flags ''()) outputs #:allow-other-keys)
|
2016-08-13 12:11:35 +02:00
|
|
|
|
;; The configure script doesn't understand some of the
|
2021-11-06 00:09:30 +01:00
|
|
|
|
;; GNU options, so we can't use the stock phase.
|
2016-08-13 12:11:35 +02:00
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2021-11-06 00:09:30 +01:00
|
|
|
|
(apply invoke "./configure"
|
|
|
|
|
(string-append "--prefix=" out)
|
|
|
|
|
configure-flags))))
|
2017-03-28 00:08:36 +02:00
|
|
|
|
;; The main `fio` executable is fairly small and self contained.
|
2021-11-05 23:56:36 +01:00
|
|
|
|
;; Moving the auxiliary scripts to a separate output saves ~100 MiB
|
|
|
|
|
;; on the closure.
|
2017-03-28 00:08:36 +02:00
|
|
|
|
(add-after 'install 'move-outputs
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((oldbin (string-append (assoc-ref outputs "out") "/bin"))
|
2021-11-05 23:56:36 +01:00
|
|
|
|
(newbin (string-append (assoc-ref outputs "utils") "/bin"))
|
|
|
|
|
(script? (lambda* (file #:rest _)
|
|
|
|
|
(call-with-input-file file
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(char=? #\# (peek-char port)))))))
|
2017-03-28 00:08:36 +02:00
|
|
|
|
(mkdir-p newbin)
|
|
|
|
|
(for-each (lambda (file)
|
2021-11-05 23:56:36 +01:00
|
|
|
|
(link file (string-append newbin "/" (basename file)))
|
|
|
|
|
(delete-file file))
|
|
|
|
|
(find-files oldbin script?))))))))
|
2017-03-28 00:08:36 +02:00
|
|
|
|
(outputs '("out" "utils"))
|
2016-08-13 12:11:35 +02:00
|
|
|
|
(inputs
|
2021-12-13 17:18:24 +01:00
|
|
|
|
(list libaio python zlib))
|
2016-08-13 12:11:35 +02:00
|
|
|
|
(home-page "https://github.com/axboe/fio")
|
|
|
|
|
(synopsis "Flexible I/O tester")
|
|
|
|
|
(description
|
|
|
|
|
"fio is a tool that will spawn a number of threads or processes doing a
|
|
|
|
|
particular type of I/O action as specified by the user. The typical use of fio
|
|
|
|
|
is to write a job file matching the I/O load one wants to simulate.")
|
|
|
|
|
;; The software is distributed under the GPL2, but a handful of components
|
|
|
|
|
;; are covered by other licenses.
|
|
|
|
|
(license (list license:gpl2 license:gpl2+ license:bsd-2
|
|
|
|
|
license:public-domain))))
|
2017-10-03 20:14:50 +02:00
|
|
|
|
|
2021-05-28 09:13:38 +02:00
|
|
|
|
(define-public intel-mpi-benchmarks/openmpi
|
2017-10-03 20:14:50 +02:00
|
|
|
|
(package
|
2021-05-28 09:13:38 +02:00
|
|
|
|
(name "intel-mpi-benchmarks")
|
2020-12-20 14:19:04 +01:00
|
|
|
|
(version "2019.6")
|
2019-12-20 22:35:12 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 22:53:28 +02:00
|
|
|
|
(url "https://github.com/intel/mpi-benchmarks")
|
2019-12-20 22:35:12 +01:00
|
|
|
|
(commit (string-append "IMB-v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-12-20 14:19:04 +01:00
|
|
|
|
"02hxbk9g9nl59bk5qcfl3djj7b58vsqys340m1xdbyqwcrbnahh9"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; Some source configuration files in the original tarball
|
|
|
|
|
;; have inappropriate execute permissions, which interferes
|
|
|
|
|
;; with the install phase below.
|
|
|
|
|
(for-each (lambda (file) (chmod file #o444))
|
|
|
|
|
(find-files "WINDOWS" "."))
|
|
|
|
|
#t))))
|
2017-10-03 20:14:50 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 17:18:24 +01:00
|
|
|
|
(list openmpi))
|
2017-10-03 20:14:50 +02:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(delete 'check)
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2019-12-20 22:35:12 +01:00
|
|
|
|
(define (benchmark? file stat)
|
|
|
|
|
(and (string-prefix? "IMB-" (basename file))
|
|
|
|
|
(executable-file? file)))
|
|
|
|
|
|
2017-10-03 20:14:50 +02:00
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin")))
|
2019-12-20 22:35:12 +01:00
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(install-file file bin))
|
|
|
|
|
(find-files "." benchmark?))
|
|
|
|
|
#t))))
|
|
|
|
|
|
|
|
|
|
;; The makefile doesn't express all the dependencies, it seems.
|
|
|
|
|
#:parallel-build? #t
|
|
|
|
|
|
|
|
|
|
#:make-flags '("CC=mpicc" "CXX=mpicxx")))
|
2017-10-03 20:14:50 +02:00
|
|
|
|
(home-page "https://software.intel.com/en-us/articles/intel-mpi-benchmarks")
|
2019-12-20 22:35:12 +01:00
|
|
|
|
(synopsis "Benchmarks for the Message Passing Interface (MPI)")
|
2017-10-03 20:14:50 +02:00
|
|
|
|
(description
|
|
|
|
|
"This package provides benchmarks for implementations of the @dfn{Message
|
|
|
|
|
Passing Interface} (MPI). It contains MPI performance measurements for
|
|
|
|
|
point-to-point and global communication, and file, operations for a range of
|
|
|
|
|
message sizes. The generated benchmark data fully characterize:
|
|
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
|
@item
|
|
|
|
|
Performance of a cluster system, including node performance, network latency,
|
|
|
|
|
and throughput;
|
|
|
|
|
@item
|
|
|
|
|
Efficiency of the MPI implementation.
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license license:cpl1.0)))
|
|
|
|
|
|
2019-03-06 21:55:14 +01:00
|
|
|
|
(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)))
|
2019-06-14 23:07:56 +02:00
|
|
|
|
|
|
|
|
|
(define-public benchmark
|
|
|
|
|
(package
|
|
|
|
|
(name "benchmark")
|
2021-09-03 20:08:59 +02:00
|
|
|
|
(version "1.5.6")
|
2019-06-14 23:07:56 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 22:53:28 +02:00
|
|
|
|
(url "https://github.com/google/benchmark")
|
2019-06-14 23:07:56 +02:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-09-03 20:08:59 +02:00
|
|
|
|
"030g4d8vpn2442dsap0qw86lsw7xfl36k0x0x9bn0vvm11qvjn8c"))))
|
2019-06-14 23:07:56 +02:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(native-inputs
|
2020-10-23 15:11:52 +02:00
|
|
|
|
`(("googletest-source" ,(package-source googletest))
|
|
|
|
|
("googletest" ,googletest)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'unpack-googletest
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(copy-recursively (assoc-ref inputs "googletest-source")
|
2021-09-03 20:08:59 +02:00
|
|
|
|
"googletest"))))))
|
2019-06-14 23:07:56 +02:00
|
|
|
|
(home-page "https://github.com/google/benchmark")
|
|
|
|
|
(synopsis "Microbenchmark support library")
|
|
|
|
|
(description
|
2020-10-23 15:11:52 +02:00
|
|
|
|
"Benchmark is a library to benchmark code snippets, similar to unit
|
|
|
|
|
tests.")
|
2019-06-14 23:07:56 +02:00
|
|
|
|
(license license:asl2.0)))
|
2020-02-22 00:37:23 +01:00
|
|
|
|
|
|
|
|
|
(define-public bonnie++
|
|
|
|
|
(package
|
|
|
|
|
(name "bonnie++")
|
|
|
|
|
(version "1.98")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.coker.com.au/bonnie++/bonnie++-"
|
|
|
|
|
version ".tgz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"010bmlmi0nrlp3aq7p624sfaj5a65lswnyyxk3cnz1bqig0cn2vf"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 17:18:24 +01:00
|
|
|
|
(list perl))
|
2020-02-22 00:37:23 +01:00
|
|
|
|
(arguments '(#:tests? #f)) ; there are no tests
|
|
|
|
|
(home-page "https://doc.coker.com.au/projects/bonnie/")
|
|
|
|
|
(synopsis "Hard drive and file system benchmark suite")
|
|
|
|
|
(description
|
|
|
|
|
"Bonnie++ is a benchmark suite that is aimed at performing a number of
|
|
|
|
|
simple tests of hard drive and file system performance. Bonnie++ allows you to
|
|
|
|
|
benchmark how your file systems perform with respect to data read and write
|
|
|
|
|
speed, the number of seeks that can be performed per second, and the number of
|
|
|
|
|
file metadata operations that can be performed per second.")
|
|
|
|
|
(license license:gpl2))) ;GPL 2 only, see copyright.txt
|
2020-11-18 17:11:44 +01:00
|
|
|
|
|
|
|
|
|
(define-public python-locust
|
|
|
|
|
(package
|
|
|
|
|
(name "python-locust")
|
2021-02-18 14:28:57 +01:00
|
|
|
|
(version "1.4.3")
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "locust" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-02-18 14:28:57 +01:00
|
|
|
|
"0vmw151xcaznd2j85n96iyv9fniss0bkk91xn4maw2gwzym424xk"))))
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'check 'extend-PATH
|
|
|
|
|
;; Add the 'locust' script to PATH, which is used in the test
|
|
|
|
|
;; suite.
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(setenv "PATH" (string-append out "/bin:"
|
2021-02-18 14:28:57 +01:00
|
|
|
|
(getenv "PATH"))))))
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "python" "-m" "pytest"
|
|
|
|
|
"-k" (string-join
|
|
|
|
|
(list
|
|
|
|
|
;; These tests return "non-zero exit status 1".
|
|
|
|
|
"not test_default_headless_spawn_options"
|
|
|
|
|
"not test_default_headless_spawn_options_with_shape"
|
|
|
|
|
"not test_headless_spawn_options_wo_run_time"
|
2021-02-18 14:28:57 +01:00
|
|
|
|
;; These tests depend on networking.
|
|
|
|
|
"not test_html_report_option"
|
2020-11-18 17:11:44 +01:00
|
|
|
|
"not test_web_options"
|
|
|
|
|
;; This test fails because of the warning "System open
|
|
|
|
|
;; file limit '1024' is below minimum setting '10000'".
|
2021-02-18 14:28:57 +01:00
|
|
|
|
"not test_skip_logging"
|
|
|
|
|
;; On some (slow?) machines, the following tests
|
|
|
|
|
;; fail, with the processes returning exit code
|
|
|
|
|
;; -15 instead of the expected 42 and 0,
|
|
|
|
|
;; respectively (see:
|
|
|
|
|
;; https://github.com/locustio/locust/issues/1708).
|
|
|
|
|
"not test_custom_exit_code"
|
|
|
|
|
"not test_webserver") " and ")))))))
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(propagated-inputs
|
2021-12-13 17:18:24 +01:00
|
|
|
|
(list python-configargparse
|
|
|
|
|
python-flask
|
|
|
|
|
python-flask-basicauth
|
|
|
|
|
python-gevent
|
|
|
|
|
python-geventhttpclient
|
|
|
|
|
python-msgpack
|
|
|
|
|
python-psutil
|
|
|
|
|
python-pyzmq
|
|
|
|
|
python-requests
|
|
|
|
|
python-werkzeug))
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(native-inputs
|
2021-12-13 17:18:24 +01:00
|
|
|
|
(list python-mock python-pyquery python-pytest)) ;for more easily skipping tests
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(home-page "https://locust.io/")
|
|
|
|
|
(synopsis "Distributed load testing framework")
|
|
|
|
|
(description "Locust is a performance testing tool that aims to be easy to
|
|
|
|
|
use, scriptable and scalable. The test scenarios are described in plain
|
|
|
|
|
Python. It provides a web-based user interface to visualize the results in
|
|
|
|
|
real-time, but can also be run non-interactively. Locust is primarily geared
|
|
|
|
|
toward testing HTTP-based applications or services, but it can be customized to
|
2021-02-18 14:28:57 +01:00
|
|
|
|
test any system or protocol.
|
|
|
|
|
|
|
|
|
|
Note: Locust will complain if the available open file descriptors limit for
|
|
|
|
|
the user is too low. To raise such limit on a Guix System, refer to
|
|
|
|
|
@samp{info guix --index-search=pam-limits-service}.")
|
2020-11-18 17:11:44 +01:00
|
|
|
|
(license license:expat)))
|
2021-05-08 15:03:05 +02:00
|
|
|
|
|
|
|
|
|
(define-public interbench
|
|
|
|
|
(package
|
|
|
|
|
(name "interbench")
|
|
|
|
|
(version "0.31")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/ckolivas/interbench")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0ifnw8vnkcgrksx7g5d9ii4kjppqnk32lvrybdybmibyvag6zfdc"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no tests
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-broken-makefile
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Remove erroneous "-lm" target
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("hackbench.o -lm") "hackbench.o"))))
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(install-file "interbench" (string-append out "/bin"))
|
|
|
|
|
(install-file "interbench.8" (string-append out "/share/man/man8"))))))))
|
|
|
|
|
(home-page "http://users.on.net/~ckolivas/interbench/")
|
|
|
|
|
(synopsis "Interactivity benchmark")
|
|
|
|
|
(description "interbench is designed to benchmark interactivity on Linux.
|
|
|
|
|
It is designed to measure the effect of changes in Linux kernel design or
|
|
|
|
|
system configuration changes such as CPU, I/O scheduler and filesystem changes
|
|
|
|
|
and options. With careful benchmarking, different hardware can be compared.")
|
|
|
|
|
(license license:gpl2+)))
|
2021-08-11 10:19:09 +02:00
|
|
|
|
|
|
|
|
|
(define-public clpeak
|
|
|
|
|
;; Release 1.1.0 is too old for our opencl-clhpp. This commit supports
|
|
|
|
|
;; cl2.hpp.
|
|
|
|
|
(let ((commit "6d59cb64997a53c35207b77a63d2e9f0e84de5fd"))
|
|
|
|
|
(package
|
|
|
|
|
(name "clpeak")
|
|
|
|
|
(version (git-version "1.1.0" "0" commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/krrishnarraj/clpeak.git")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0qmhdjyhwl7gfgyqxsddqn6zpp3b57503m16h7jv6illy3lfvji1"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(home-page "https://github.com/krrishnarraj/clpeak")
|
|
|
|
|
(inputs
|
2021-12-13 17:18:24 +01:00
|
|
|
|
(list opencl-clhpp opencl-icd-loader))
|
2021-08-11 10:19:09 +02:00
|
|
|
|
(synopsis "OpenCL benchmark tool")
|
|
|
|
|
(description
|
|
|
|
|
"A synthetic benchmarking tool to measure peak capabilities of OpenCL
|
|
|
|
|
devices. It only measures the peak metrics that can be achieved using
|
|
|
|
|
vector operations and does not represent a real-world use case.")
|
|
|
|
|
(license license:unlicense))))
|