-
Notifications
You must be signed in to change notification settings - Fork 704
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12476 from boegel/20210325170607_new_pr_FlexiBLAS304
{lib}[GCC/10.3.0] FlexiBLAS v3.0.4 on top of OpenBLAS 0.3.15
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
easybuild/easyconfigs/f/FlexiBLAS/FlexiBLAS-3.0.4-GCC-10.3.0.eb
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,27 @@ | ||
name = 'FlexiBLAS' | ||
version = '3.0.4' | ||
|
||
homepage = 'https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release' | ||
description = """FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation | ||
used by a program without recompiling or relinking it.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '10.3.0'} | ||
local_extra_flags = "-fstack-protector-strong -fstack-clash-protection" | ||
toolchainopts = {'pic': True, 'extra_cflags': local_extra_flags, 'extra_fflags': local_extra_flags} | ||
|
||
source_urls = ['https://csc.mpi-magdeburg.mpg.de/mpcsc/software/flexiblas/'] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['50a88f2e88994dda91b2a2621850afd9654b3b84820e737e335687a46751be5c'] | ||
|
||
builddependencies = [ | ||
('CMake', '3.20.1'), | ||
('Python', '3.9.5'), # required for running the tests | ||
] | ||
|
||
# note: first listed library will be used as default by FlexiBLAS, | ||
# unless otherwise specified via easyconfig parameter flexiblas_default | ||
dependencies = [ | ||
('OpenBLAS', '0.3.15'), | ||
] | ||
|
||
moduleclass = 'lib' |