guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/08: gnu: Add xtensor.


From: Ludovic Courtès
Subject: 08/08: gnu: Add xtensor.
Date: Mon, 28 May 2018 08:52:41 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 70770b9381638b136b92970f67023f6b77fc4460
Author: Fis Trivial <address@hidden>
Date:   Mon May 28 08:12:42 2018 +0000

    gnu: Add xtensor.
    
    * gnu/packages/algebra.scm (xtensor): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/algebra.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index 210b734..bf62144 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -27,7 +27,9 @@
 (define-module (gnu packages algebra)
   #:use-module (gnu packages)
   #:use-module (gnu packages autotools)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages cpp)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages ed)
   #:use-module (gnu packages flex)
@@ -774,3 +776,37 @@ features, and more.")
     ;; Most of the code is MPLv2, with a few files under LGPLv2.1+ or BSD-3.
     ;; See 'COPYING.README' for details.
     (license license:mpl2.0)))
+
+(define-public xtensor
+  (package
+    (name "xtensor")
+    (version "0.15.9")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/QuantStack/xtensor/archive/";
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0mlsw4p1w5mh7pscddfdamz27zq3wml5qla3vbzgvif34vsqc8ra"))
+              (file-name (string-append name "-" version ".tar.gz"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("googletest" ,googletest)
+       ("xtl" ,xtl)))
+    (arguments
+     `(#:configure-flags
+       '("-DBUILD_TESTS=ON")
+       #:test-target "xtest"))
+    (home-page "http://quantstack.net/xtensor";)
+    (synopsis "C++ tensors with broadcasting and lazy computing")
+    (description "xtensor is a C++ library meant for numerical analysis with
+multi-dimensional array expressions.
+
+xtensor provides:
address@hidden
address@hidden an extensible expression system enabling lazy broadcasting.
address@hidden an API following the idioms of the C++ standard library.
address@hidden tools to manipulate array expressions and build upon xtensor.
address@hidden itemize")
+    (license license:bsd-3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]