mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: fftw: Add dependency on openmpi.
* gnu/packages/algebra.scm (fftw)[inputs,arguments]: Add OpenMPI.
This commit is contained in:
parent
2cf287df59
commit
0fc54d4b31
1 changed files with 3 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
||||||
(define-module (gnu packages algebra)
|
(define-module (gnu packages algebra)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages multiprecision)
|
#:use-module (gnu packages multiprecision)
|
||||||
|
#:use-module (gnu packages mpi)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
|
@ -206,7 +207,7 @@ (define-public fftw
|
||||||
"10h9mzjxnwlsjziah4lri85scc05rlajz39nqf3mbh4vja8dw34g"))))
|
"10h9mzjxnwlsjziah4lri85scc05rlajz39nqf3mbh4vja8dw34g"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--enable-shared" "--enable-openmp")
|
'(#:configure-flags '("--enable-shared" "--enable-openmp" "--enable-mpi")
|
||||||
#:phases (alist-cons-before
|
#:phases (alist-cons-before
|
||||||
'build 'no-native
|
'build 'no-native
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -218,6 +219,7 @@ (define-public fftw
|
||||||
(("-mtune=native") "")))
|
(("-mtune=native") "")))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(native-inputs `(("perl" ,perl)))
|
(native-inputs `(("perl" ,perl)))
|
||||||
|
(inputs `(("openmpi" ,openmpi)))
|
||||||
(home-page "http://fftw.org")
|
(home-page "http://fftw.org")
|
||||||
(synopsis "Computing the discrete Fourier transform")
|
(synopsis "Computing the discrete Fourier transform")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue