[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: Add xtensor-benchmark.
From: |
guix-commits |
Subject: |
07/11: gnu: Add xtensor-benchmark. |
Date: |
Tue, 7 Dec 2021 04:10:31 -0500 (EST) |
civodul pushed a commit to branch wip-cpu-tuning
in repository guix.
commit f07519c75299dd33da85f9db64a62b7188b0d2c5
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Dec 3 23:27:47 2021 +0100
gnu: Add xtensor-benchmark.
* gnu/packages/algebra.scm (xtensor-benchmark): New variable.
---
gnu/packages/algebra.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index a782f8b..4e3f829 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -1200,6 +1200,46 @@ xtensor provides:
@end itemize")
(license license:bsd-3)))
+(define-public xtensor-benchmark
+ (package
+ (inherit xtensor)
+ (name "xtensor-benchmark")
+ (arguments
+ `(#:configure-flags (list "-DBUILD_BENCHMARK=ON"
+ "-DDOWNLOAD_GBENCHMARK=OFF")
+ #:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'unpack 'remove-march=native
+ (lambda _
+ (substitute* "benchmark/CMakeLists.txt"
+ (("-march=native") ""))))
+ (add-after 'unpack 'link-with-googlebenchmark
+ (lambda _
+ (substitute* "benchmark/CMakeLists.txt"
+ (("find_package\\(benchmark.*" all)
+ (string-append
+ all "\n"
+ "set(GBENCHMARK_LIBRARIES benchmark)\n")))))
+ (replace 'build
+ (lambda _
+ (invoke "make" "benchmark_xtensor" "-j"
+ (number->string (parallel-job-count)))))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Install nothing but the executable.
+ (let ((out (assoc-ref outputs "out")))
+ (install-file "benchmark/benchmark_xtensor"
+ (string-append out "/bin"))))))))
+ (synopsis "Benchmarks of the xtensor library")
+ (native-inputs '())
+ (inputs
+ `(("googlebenchmark" ,googlebenchmark)
+ ("xsimd" ,xsimd)
+ ,@(package-native-inputs xtensor)))
+
+ ;; Mark as tunable to take advantage of SIMD code in xsimd/xtensor.
+ (properties '((tunable? . #t)))))
+
(define-public gap
(package
(name "gap")
- branch wip-cpu-tuning created (now e8d7890), guix-commits, 2021/12/07
- 03/11: transformations: Add '--tune'., guix-commits, 2021/12/07
- 11/11: gnu: prusa-slicer: Mark as tunable., guix-commits, 2021/12/07
- 07/11: gnu: Add xtensor-benchmark.,
guix-commits <=
- 09/11: gnu: Add ceres-solver-benchmarks., guix-commits, 2021/12/07
- 02/11: Add (guix cpu)., guix-commits, 2021/12/07
- 05/11: gnu: Add eigen-benchmarks., guix-commits, 2021/12/07
- 04/11: ci: Add extra jobs for tunable packages., guix-commits, 2021/12/07
- 10/11: gnu: libfive: Mark as tunable., guix-commits, 2021/12/07
- 08/11: gnu: ceres-solver: Mark as tunable., guix-commits, 2021/12/07
- 01/11: gnu: ocaml4.07-ppx-let: Make 'properties' an alist., guix-commits, 2021/12/07
- 06/11: gnu: Add xsimd-benchmark., guix-commits, 2021/12/07