GNU bug report logs - #56989
[PATCH v1 1/5] gnu: bqn: Add bqn.scm and dbqn package.

Previous Next

Package: guix-patches;

Reported by: Christopher Rodriguez <yewscion <at> gmail.com>

Date: Fri, 5 Aug 2022 02:21:02 UTC

Severity: normal

Tags: patch

Merged with 56990, 56991, 56992, 56993

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#56991: closed ([PATCH v1 4/5] gnu: bqn: Add singeli-bootstrap.)
Date: Wed, 31 Aug 2022 21:11:03 +0000
[Message part 1 (text/plain, inline)]
Your message dated Wed, 31 Aug 2022 23:10:44 +0200
with message-id <87a67k9l0r.fsf_-_ <at> gnu.org>
and subject line Re: bug#56993: [PATCH v1 5/5] gnu: bqn: Add cbqn.
has caused the debbugs.gnu.org bug report #56989,
regarding [PATCH v1 4/5] gnu: bqn: Add singeli-bootstrap.
to be marked as done.

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


-- 
56989: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56989
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Christopher Rodriguez <yewscion <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Christopher Rodriguez <yewscion <at> gmail.com>
Subject: [PATCH v1 4/5] gnu: bqn: Add singeli-bootstrap.
Date: Thu,  4 Aug 2022 22:20:22 -0400
---
 gnu/packages/bqn.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
index 0e26706476..3616067d87 100644
--- a/gnu/packages/bqn.scm
+++ b/gnu/packages/bqn.scm
@@ -171,3 +171,38 @@ (define cbqn-bootstrap
 according to the official documentation of that specification.")
       (home-page "https://mlochbaum.github.io/BQN/")
       (license license:gpl3))))
+(define singeli-bootstrap
+  (let* ((tag "0")
+         (revision "1")
+         (commit "fd17b144483549dbd2bcf23e3a37a09219171a99")
+         (hash "1rr4l7ijzcg25n2igi1mzya6qllh5wsrf3m5i429rlgwv1fwvfji")
+         (version (git-version tag revision commit)))
+    (package
+      (name "singeli-bootstrap")
+      (version version)
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/mlochbaum/Singeli")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  hash))))
+      (outputs '("out"))
+      (build-system copy-build-system)
+      (arguments
+       (list
+             ;; cbqn needs the layout of singeli to stay the same for its tests.
+             #:install-plan '(list (list "./" "share/singeli"))))
+      (native-inputs (list cbqn-bootstrap))
+      (synopsis "High-level interface for low-level programming")
+      (description
+       "Singeli is a domain-specific language for building SIMD
+      algorithms with flexible abstractions and control over every instruction
+      emitted. It's implemented in BQN, with a frontend that emits IR and a
+      backend that converts it to C. Other backends like LLVM or machine code
+      are possible—it should be easy to support other CPU architectures but
+      there are no plans to target GPUs.")
+      (home-page "https://github.com/mlochbaum/Singeli")
+      (license license:isc))))
-- 
2.37.1



[Message part 3 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org>
To: Christopher Rodriguez <yewscion <at> gmail.com>
Cc: 56993-done <at> debbugs.gnu.org, 56989-done <at> debbugs.gnu.org
Subject: Re: bug#56993: [PATCH v1 5/5] gnu: bqn: Add cbqn.
Date: Wed, 31 Aug 2022 23:10:44 +0200
Hi Christopher,

Christopher Rodriguez <yewscion <at> gmail.com> skribis:

> * gnu/packages/bqn.scm: Create module.
> * gnu/local.mk (GNU_SYSTEM_MODULES): Register module.

I applied the whole series with minor changes: adding newlines in
between definitions, tweaking descriptions, etc.

Thanks!

Ludo’.


This bug report was last modified 2 years and 263 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.