From f2059169039561ae3b676e50443c14077d1e03db Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Mon, 27 Dec 2021 00:28:40 +0000 Subject: gnu: Add google-highway. * gnu/packages/cpp.scm (google-highway): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/cpp.scm | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index b6c56cf1a1..fe2ab3772e 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2020 Roel Janssen ;;; Copyright © 2020, 2021 Ricardo Wurmus ;;; Copyright © 2020 Brice Waegeneire -;;; Copyright © 2020 Vinicius Monego +;;; Copyright © 2020, 2021 Vinicius Monego ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Alexandros Theodotou @@ -300,6 +300,30 @@ It also provides accelerated implementation of common mathematical functions operating on batches.") (license license:bsd-3))) +(define-public google-highway + (package + (name "google-highway") + (version "0.15.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/highway") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1yjwgnrpd9m99x2nqf6ld28zc6y9nlsxqg128bxxmja1gg4g4qdz")))) + (build-system cmake-build-system) + (arguments + `(#:configure-flags (list "-DHWY_SYSTEM_GTEST=on"))) + (native-inputs + (list googletest)) + (home-page "https://github.com/google/highway") + (synopsis "SIMD library with runtime dispatch") + (description "Highway is a performance-portable, length-agnostic C++ +library for SIMD (Single Instruction, Multiple Data) with runtime dispatch.") + (license license:asl2.0))) + (define-public chaiscript (package (name "chaiscript") -- cgit v1.2.3