all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: aecepoglu <aecepoglu@fastmail.fm>, 69023@debbugs.gnu.org
Subject: [bug#69023] [PATCH 1/5] gnu: bqn: Add singeli.
Date: Fri, 19 Apr 2024 20:44:15 +0200	[thread overview]
Message-ID: <ba59dfa8c9fdbc4d1aabe385cc37b44399363f59.camel@gmail.com> (raw)
In-Reply-To: <75533bd75ddccc62b5041e1532d6161f074ef93a.1707607099.git.aecepoglu@fastmail.fm>

Am Samstag, dem 10.02.2024 um 23:28 +0000 schrieb aecepoglu:
> Newer versions of BQN use Singeli
This comment is kinda gratuitous, but if you need it, please make it a
full sentence.

> * gnu/packages/bqn.scm: Add singeli
Missing final dot.

> Change-Id: I5a2ce84a2b96cdad0617af46978f44ef1a86047f
> ---
>  gnu/packages/bqn.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
> index 4d03385d21..acac2d45cc 100644
> --- a/gnu/packages/bqn.scm
> +++ b/gnu/packages/bqn.scm
> @@ -34,6 +34,32 @@ (define-module (gnu packages bqn)
>    #:use-module (gnu packages java)
>    #:use-module (gnu packages compression))
>  
> +(define-public singeli
> +  (let ((commit "5f9cbd46c265491ff167a5d9377d1462539dbdd8")
> +        (revision "1"))
> +    (package
> +      (name "singeli")
> +      (version (git-version "0.1.1" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/mlochbaum/Singeli.git")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32
> "13mfxkb29n4phpqxiwfcd43mcg8773n03nml8d9rhbdb6s5jrixb"))))
> +      (build-system copy-build-system)
> +      (arguments
> +       '(#:install-plan '(("." "lib"))))
This… looks weird.  Particularly given that the layout of Singeli looks
like a source tree with all kinds of things.
> +      (synopsis "Language to generate performant C codes with")
I'd prefer "Domain-specific language for high-performance algorithms".
WDYT?
> +      (description
> +       "Singeli is a domain-specific language for building high-
> performance
> +algorithms with abstractions over code that corresponds to
> individual instructions.
> +It's implemented in BQN, with a frontend that emits IR and a backend
> that converts it to C.")
> +      (home-page "https://github.com/mlochbaum/Singeli")
> +      (license license:isc))))
> +
>  (define-public dbqn
>    (let ((commit "88f2b43966a75cc2c382421218eb30003bb16f4a")
>          (revision "1"))

Cheers




  reply	other threads:[~2024-04-19 18:45 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-10 23:23 [bug#69023] [PATCH 0/5] gnu: package: Update cbqn aecepoglu
2024-02-10 23:28 ` [bug#69023] [PATCH 1/5] gnu: bqn: Add singeli aecepoglu
2024-04-19 18:44   ` Liliana Marie Prikler [this message]
2024-02-10 23:28 ` [bug#69023] [PATCH 2/5] gnu: bqn: Update dbqn aecepoglu
2024-04-19 18:44   ` Liliana Marie Prikler
2024-02-10 23:28 ` [bug#69023] [PATCH 3/5] gnu: bqn: Update bqn-sources aecepoglu
2024-02-10 23:28 ` [bug#69023] [PATCH 4/5] gnu: bqn: Update cbqn-bootstrap aecepoglu
2024-02-10 23:28 ` [bug#69023] [PATCH 5/5] gnu: bqn: Update cbqn aecepoglu
2024-03-31  4:22   ` aecepoglu
2024-04-19 18:47   ` Liliana Marie Prikler
     [not found] ` <handler.69023.B.17076072547491.ack@debbugs.gnu.org>
2024-04-14  8:26   ` [bug#69023] Acknowledgement ([PATCH 0/5] gnu: package: Update cbqn.) aecepoglu
2024-04-14  8:47     ` aecepoglu
2024-04-30  0:50 ` [bug#69023] [PATCH v2 0/5] gnu: bqn: Update cbqn aecepoglu
2024-04-30  0:50   ` [bug#69023] [PATCH v2 1/5] gnu: bqn: Add singeli aecepoglu
2024-04-30  0:50   ` [bug#69023] [PATCH v2 2/5] gnu: bqn: Update dbqn aecepoglu
2024-04-30  5:55     ` Liliana Marie Prikler
2024-04-30  0:50   ` [bug#69023] [PATCH v2 3/5] gnu: bqn: Update bqn-sources aecepoglu
2024-04-30  0:50   ` [bug#69023] [PATCH v2 4/5] gnu: bqn: Update cbqn-bootstrap aecepoglu
2024-04-30  0:50   ` [bug#69023] [PATCH v2 5/5] gnu: bqn: Update cbqn aecepoglu
2024-04-30  4:55   ` [bug#69023] [PATCH v2 0/5] " Liliana Marie Prikler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ba59dfa8c9fdbc4d1aabe385cc37b44399363f59.camel@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=69023@debbugs.gnu.org \
    --cc=aecepoglu@fastmail.fm \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.