-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b82cbeb
commit b2a4159
Showing
3 changed files
with
62 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name = 'FFTW' | ||
version = '3.3.10' | ||
|
||
homepage = 'https://www.fftw.org' | ||
description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) | ||
in one or more dimensions, of arbitrary input size, and of both real and complex data.""" | ||
|
||
toolchain = {'name': 'intel-compilers', 'version': '2023.1.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = [homepage] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] | ||
|
||
# no quad precision, requires GCC v4.6 or higher | ||
# see also | ||
# https://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html | ||
with_quad_prec = False | ||
|
||
# compilation fails on AMD systems when configuring with --enable-avx-128-fma, | ||
# because Intel compilers do not support FMA4 instructions | ||
use_fma4 = False | ||
|
||
runtest = 'check' | ||
|
||
moduleclass = 'numlib' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name = 'FFTW' | ||
version = '3.3.10' | ||
|
||
homepage = 'https://www.fftw.org' | ||
description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) | ||
in one or more dimensions, of arbitrary input size, and of both real and complex data.""" | ||
|
||
toolchain = {'name': 'intel-compilers', 'version': '2023.2.1'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = [homepage] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] | ||
|
||
# no quad precision, requires GCC v4.6 or higher | ||
# see also | ||
# https://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html | ||
with_quad_prec = False | ||
|
||
# compilation fails on AMD systems when configuring with --enable-avx-128-fma, | ||
# because Intel compilers do not support FMA4 instructions | ||
use_fma4 = False | ||
|
||
runtest = 'check' | ||
|
||
moduleclass = 'numlib' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters