* [bug#31433] [PATCH] gnu: Add xsimd.
@ 2018-05-12 15:28 Fis Trivial
2018-05-24 21:38 ` bug#31433: " Ludovic Courtès
0 siblings, 1 reply; 2+ messages in thread
From: Fis Trivial @ 2018-05-12 15:28 UTC (permalink / raw)
To: 31433
* gnu/packages/cpp.scm (xsimd): New variable.
---
gnu/packages/cpp.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 3e9c39df6..80ffc1ea2 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -124,3 +124,30 @@ unified access to TCP/UDP sockets, serial ports, console, and files streams.
It also allows a server application to wait for any activity on any
combination of these streams.")
(license license:bsd-3)))
+
+(define-public xsimd
+ (package
+ (name "xsimd")
+ (version "4.1.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/QuantStack/xsimd/archive/"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0x05l4xpqr9b66sm6lkf48n6x7999ks921x6k2hzkkg6mh3gqd46"))
+ (file-name (string-append name "-" version ".tar.gz"))))
+ (home-page "https://github.com/QuantStack/xsimd")
+ (build-system cmake-build-system)
+ (arguments
+ `(#:test-target "xtest"))
+ (native-inputs
+ `(("googletest" ,googletest)))
+ (synopsis "C++ wrappers for SIMD intrinsics and math implementations")
+ (description "xsimd provides a unified means for using SIMD features for
+library authors. Namely, it enables manipulation of batches of numbers with
+the same arithmetic operators as for single values. It also provides
+accelerated implementation of common mathematical functions operating on
+batches.")
+ (license license:bsd-3)))
--
2.14.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#31433: [PATCH] gnu: Add xsimd.
2018-05-12 15:28 [bug#31433] [PATCH] gnu: Add xsimd Fis Trivial
@ 2018-05-24 21:38 ` Ludovic Courtès
0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2018-05-24 21:38 UTC (permalink / raw)
To: Fis Trivial; +Cc: 31433-done
Fis Trivial <ybbs.daans@hotmail.com> skribis:
> * gnu/packages/cpp.scm (xsimd): New variable.
Applied, thanks!
Ludo'.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-05-24 21:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-12 15:28 [bug#31433] [PATCH] gnu: Add xsimd Fis Trivial
2018-05-24 21:38 ` bug#31433: " Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).