2021-11-29 18:21:25 +01:00
|
|
|
|
(define-module (glicid packages maths)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (gnu packages maths)
|
|
|
|
|
#:use-module (gnu packages commencement)
|
|
|
|
|
#:use-module (gnu packages mpi)
|
|
|
|
|
#:use-module (guix download)
|
2021-11-29 19:13:56 +01:00
|
|
|
|
#:use-module (guix git-download)
|
2021-11-29 18:21:25 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
;;;;;;;;
|
|
|
|
|
|
|
|
|
|
(define-public scalapack-newer
|
|
|
|
|
|
|
|
|
|
(package
|
|
|
|
|
(inherit scalapack)
|
|
|
|
|
(name "scalapack-newer")
|
2021-11-29 19:13:56 +01:00
|
|
|
|
(version "2.1.0-upstrean") ;; need this for compilation > gcc 9
|
2021-11-29 18:21:25 +01:00
|
|
|
|
(source (origin
|
2021-11-29 19:13:56 +01:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/Reference-ScaLAPACK/scalapack.git")
|
|
|
|
|
(commit "3f898b5f1225c9eee271ae6ac6c351ef84f860af")
|
|
|
|
|
))
|
2021-11-29 18:21:25 +01:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-11-29 19:13:56 +01:00
|
|
|
|
"02q791g1sfic4k3ih31z07pnzhld09wyq524bicx6jx1aw8s7k4b"))))
|
2021-11-29 18:21:25 +01:00
|
|
|
|
|
2021-11-29 19:13:56 +01:00
|
|
|
|
)
|
2021-11-29 18:21:25 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
(define-public scalapack-latest scalapack-newer)
|
|
|
|
|
|
2021-11-29 19:13:56 +01:00
|
|
|
|
;; scalapack-newer
|
|
|
|
|
|
2021-11-29 18:21:25 +01:00
|
|
|
|
;;; glicid/maths.scm ends here
|