all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#65284] [PATCH] gnu: Add ggml
@ 2023-08-14  8:26 Andy Tai
  2023-09-20  5:28 ` [bug#65284] [PATCH v2] " Andy Tai
  2023-12-18  0:37 ` [bug#65284] [PATCH v3] " Andy Tai
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Tai @ 2023-08-14  8:26 UTC (permalink / raw)
  To: 65284; +Cc: Andy Tai

* gnu/packages/machine-learning.scm (ggml): New variable
---
 gnu/packages/machine-learning.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index c32180615b..8d89ef2208 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4801,3 +4801,30 @@ (define-public oneapi-dnnl
      "OneAPI Deep Neural Network Library (oneDNN) is a cross-platform
 performance library of basic building blocks for deep learning applications.")
     (license license:asl2.0)))
+
+
+(define-public ggml
+  (let ((commit "95b559dbae6a25b2a7e26ab5989c1538387225e9")
+        (version "0.1.0")
+        (revision "1"))
+    (package
+      (name "ggml")
+      (version (git-version version revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/ggerganov/ggml")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "06x3aa6071f7r69lyipn8agzqryh0c4b6zs5mma7c0r8ixbjb3ly"))))
+      (build-system cmake-build-system)
+      (home-page "https://ggml.ai/")
+      (synopsis "Tensor library for machine learning")
+      (description
+       "ggml is a tensor library for machine learning to enable large models and
+high performance on commodity hardware.  It is used by llama.cpp and whisper.cpp.")
+      (license license:expat))))
+
+

base-commit: b15381460ed74e72792ff182dd2ca7a06ba59b0c
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#65284] [PATCH v2] gnu: Add ggml
  2023-08-14  8:26 [bug#65284] [PATCH] gnu: Add ggml Andy Tai
@ 2023-09-20  5:28 ` Andy Tai
  2023-12-18  0:37 ` [bug#65284] [PATCH v3] " Andy Tai
  1 sibling, 0 replies; 3+ messages in thread
From: Andy Tai @ 2023-09-20  5:28 UTC (permalink / raw)
  To: 65284; +Cc: Andy Tai

* gnu/packages/machine-learning.scm (ggml): New variable
---
 gnu/packages/machine-learning.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index abba41626d..d90ddaf653 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4926,3 +4926,30 @@ (define-public oneapi-dnnl
      "OneAPI Deep Neural Network Library (oneDNN) is a cross-platform
 performance library of basic building blocks for deep learning applications.")
     (license license:asl2.0)))
+
+
+(define-public ggml
+  (let ((commit "95b559dbae6a25b2a7e26ab5989c1538387225e9")
+        (version "0.1.0")
+        (revision "1"))
+    (package
+      (name "ggml")
+      (version (git-version version revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/ggerganov/ggml")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "06x3aa6071f7r69lyipn8agzqryh0c4b6zs5mma7c0r8ixbjb3ly"))))
+      (build-system cmake-build-system)
+      (home-page "https://ggml.ai/")
+      (synopsis "Tensor library for machine learning")
+      (description
+       "ggml is a tensor library for machine learning to enable large models and
+high performance on commodity hardware.  It is used by llama.cpp and whisper.cpp.")
+      (license license:expat))))
+
+

base-commit: 4b3b2e63007acee9e3a8c2ea728190480d092c3c
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#65284] [PATCH v3] gnu: Add ggml
  2023-08-14  8:26 [bug#65284] [PATCH] gnu: Add ggml Andy Tai
  2023-09-20  5:28 ` [bug#65284] [PATCH v2] " Andy Tai
@ 2023-12-18  0:37 ` Andy Tai
  1 sibling, 0 replies; 3+ messages in thread
From: Andy Tai @ 2023-12-18  0:37 UTC (permalink / raw)
  To: 65284; +Cc: Andy Tai

* gnu/packages/machine-learning.scm (ggml): New variable

Change-Id: I9de46fb537262089cf9d548fab056a2a55279b23
---
 gnu/packages/machine-learning.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index c100e0be6e..5d144961c7 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -5038,3 +5038,30 @@ (define-public oneapi-dnnl
      "OneAPI Deep Neural Network Library (oneDNN) is a cross-platform
 performance library of basic building blocks for deep learning applications.")
     (license license:asl2.0)))
+
+
+(define-public ggml
+  (let ((commit "6b846cbde81ae02cd3e363311180ae706091933e")
+        (version "0.1.0")
+        (revision "1"))
+    (package
+      (name "ggml")
+      (version (git-version version revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/ggerganov/ggml")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "02s3rrns0nw2d3321wizpy9qgc4w7vl604kql5s77srz6lr9km0b"))))
+      (build-system cmake-build-system)
+      (home-page "https://ggml.ai/")
+      (synopsis "Tensor library for machine learning")
+      (description
+       "ggml is a tensor library for machine learning to enable large models and
+high performance on commodity hardware.  It is used by llama.cpp and whisper.cpp.")
+      (license license:expat))))
+
+

base-commit: 6ab242609daec00e8bd54f7bff54557c92695724
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-12-18  0:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-14  8:26 [bug#65284] [PATCH] gnu: Add ggml Andy Tai
2023-09-20  5:28 ` [bug#65284] [PATCH v2] " Andy Tai
2023-12-18  0:37 ` [bug#65284] [PATCH v3] " Andy Tai

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.