guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add python-pyamg.


From: guix-commits
Subject: 01/02: gnu: Add python-pyamg.
Date: Sun, 21 Jan 2024 12:41:49 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit 5f93aa182a32e4baecc6238c21d2538af0b18ad3
Author: Felix Gruber <felgru@posteo.net>
AuthorDate: Sat Nov 4 15:05:56 2023 +0000

    gnu: Add python-pyamg.
    
    * gnu/packages/python-science.scm (python-pyamg): New variable.
    
    Change-Id: Ibf39fecd14d4e6fd72078b217737e5e5cbbf2321
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/python-science.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 3422302a87..ed3a19f1b3 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -457,6 +457,41 @@ volume computations for simple domains like regular 
polygons, disks,
 spheres, cubes, etc.")
     (license license:gpl3+)))
 
+(define-public python-pyamg
+  (package
+    (name "python-pyamg")
+    (version "5.0.1")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "pyamg" version))
+              (sha256
+               (base32
+                "0l3dliwynxyjvbgpmi2k8jqvkkw6fc00c8w69h6swhrkfh0ql12z"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      ;; Test installed package in order to find C++ modules.
+      #~(list "--pyargs" "pyamg.tests")))
+    (native-inputs (list pybind11 python-pytest python-setuptools-scm))
+    (propagated-inputs (list python-numpy python-scipy))
+    (home-page "https://github.com/pyamg/pyamg";)
+    (synopsis "Algebraic Multigrid Solvers in Python")
+    (description "PyAMG is a Python library of Algebraic Multigrid
+(AMG) solvers.
+
+PyAMG features implementations of:
+@itemize
+@item Ruge-Stuben (RS) or Classical AMG
+@item AMG based on Smoothed Aggregation (SA)
+@item Adaptive Smoothed Aggregation (αSA)
+@item Compatible Relaxation (CR)
+@item Krylov methods such as CG, GMRES, FGMRES, BiCGStab, MINRES, etc.
+@end itemize
+PyAMG is primarily written in Python with supporting C++ code for
+performance critical operations.")
+    (license license:expat)))
+
 (define-public python-tspex
   (package
     (name "python-tspex")



reply via email to

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