emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#51087: closed ([PATCH] gnu: Add simdjson.)


From: GNU bug Tracking System
Subject: bug#51087: closed ([PATCH] gnu: Add simdjson.)
Date: Thu, 14 Oct 2021 12:59:02 +0000

Your message dated Thu, 14 Oct 2021 14:58:44 +0200
with message-id <875ytzrce3.fsf@gnu.org>
and subject line Re: bug#51087: [PATCH] gnu: Add simdjson.
has caused the debbugs.gnu.org bug report #51087,
regarding [PATCH] gnu: Add simdjson.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
51087: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=51087
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add simdjson. Date: Thu, 7 Oct 2021 14:12:21 -0400
From a260708c520c744e492671914af02c5129ae9b4d Mon Sep 17 00:00:00 2001
From: Greg Hogan <code@greghogan.com>
Date: Mon, 27 Sep 2021 14:20:03 +0000
Subject: [PATCH] gnu: Add simdjson.

* gnu/packages/cpp.scm (simdjson): New variable.
---
 gnu/packages/cpp.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 1fb4aa481f..ccdcb3f835 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1347,3 +1347,29 @@ of reading and writing XML.")
     (description "Jsonnet is a templating language extending JSON
 syntax with variables, conditions, functions and more.")
     (license license:asl2.0)))
+
+(define-public simdjson
+  (package
+    (name "simdjson")
+    (version "1.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/simdjson/simdjson")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "08qpsw0i8481xlyyghzyszb1vh4c8i7krzzghvr9m4yg394vf6zn"))))
+    (build-system cmake-build-system)
+    (arguments
+     '(#:tests? #f                      ; tests require downloading dependencies
+       #:configure-flags
+       '("-DBUILD_SHARED_LIBS=ON")))
+    (synopsis "JSON parser for C++ using SIMD instructions")
+    (description
+     "The simdjson library uses commonly available SIMD instructions and
+microparallel algorithms to implement a strict JSON parser with UTF-8
+validation.")
+    (home-page "https://github.com/simdjson/simdjson")
+    (license license:asl2.0)))
--
2.33.0

Attachment: 0001-gnu-Add-simdjson.patch
Description: Binary data


--- End Message ---
--- Begin Message --- Subject: Re: bug#51087: [PATCH] gnu: Add simdjson. Date: Thu, 14 Oct 2021 14:58:44 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Hi Greg,

Greg Hogan <code@greghogan.com> skribis:

> From a260708c520c744e492671914af02c5129ae9b4d Mon Sep 17 00:00:00 2001
> From: Greg Hogan <code@greghogan.com>
> Date: Mon, 27 Sep 2021 14:20:03 +0000
> Subject: [PATCH] gnu: Add simdjson.
>
> * gnu/packages/cpp.scm (simdjson): New variable.

Applied, thanks!

I was afraid of seeing ‘-mavx512’ or ‘-mtune=native’ flags, but
apparently there’s nothing like that, so I suppose it just builds for
the common ISA SIMD denominator?

> +    (arguments
> +     '(#:tests? #f                      ; tests require downloading 
> dependencies

IWBN to see if we can get them to run, using packaged dependencies.

Ludo’.


--- End Message ---

reply via email to

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