-
Notifications
You must be signed in to change notification settings - Fork 714
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: FFTW-3.3.10-GCC-13.3.0.eb, gfbf-2024.05.eb
- Loading branch information
1 parent
cd1ea55
commit 0e3c59a
Showing
2 changed files
with
37 additions
and
0 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,17 @@ | ||
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': 'GCC', 'version': '13.3.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = [homepage] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467'] | ||
|
||
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,20 @@ | ||
easyblock = 'Toolchain' | ||
|
||
name = 'gfbf' | ||
version = '2024.05' | ||
|
||
homepage = '(none)' | ||
description = """GNU Compiler Collection (GCC) based compiler toolchain, including | ||
FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW.""" | ||
|
||
toolchain = SYSTEM | ||
|
||
local_gccver = '13.3.0' | ||
|
||
dependencies = [ | ||
('GCC', local_gccver), | ||
('FlexiBLAS', '3.4.4', '', ('GCC', local_gccver)), | ||
('FFTW', '3.3.10', '', ('GCC', local_gccver)), | ||
] | ||
|
||
moduleclass = 'toolchain' |