GNU bug report logs -
#73603
[PATCH 0/2] Add support for parallel I/O in netcdf
Previous Next
Reported by: Romain GARBAGE <romain.garbage <at> inria.fr>
Date: Wed, 2 Oct 2024 15:39:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludovic.courtes <at> inria.fr>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
* gnu/packages/maths.scm (pnetcdf): New variable.
Change-Id: I419161be82cd45585187abfd1e63a23feac73d59
---
gnu/packages/maths.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 03fa4d2fae..51812c5a0d 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -2350,6 +2350,37 @@ (define-public netcdf
sharing of scientific data.")
(license (license:x11-style "file://COPYRIGHT"))))
+(define-public pnetcdf
+ (package
+ (name "pnetcdf")
+ (version "1.13.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://parallel-netcdf.github.io/Release/pnetcdf-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "14f4nbcnw80y59cl0kjpxqqfaxzzd62kixnhb6ihp6aigb3z385b"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:configure-flags
+ #~(list "--enable-shared"
+ (string-append "--with-mpi=" #$(this-package-input "openmpi")))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'build 'mpi-setup
+ #$%openmpi-setup))))
+ (inputs (list openmpi))
+ (native-inputs (list m4))
+ (home-page "https://parallel-netcdf.github.io/")
+ (synopsis "Parallel I/O Library for NetCDF File Access")
+ (description "PnetCDF is a high-performance parallel I/O library for accessing
+Unidata's NetCDF, files in classic formats, specifically the formats of CDF-1, 2, and
+5.")
+ (license (license:x11-style "file://COPYRIGHT"))))
+
(define-public netcdf-parallel-openmpi
(package (inherit netcdf)
(name "netcdf-parallel-openmpi")
base-commit: 71fef00c95b22a1d917abdb28de5aa217b023e31
--
2.46.0
This bug report was last modified 282 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.