-
Notifications
You must be signed in to change notification settings - Fork 706
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 #9852 from boegel/20200210175417_new_pr_OpenBLAS038
{numlib}[GCC/9.2.0] OpenBLAS v0.3.8
- Loading branch information
Showing
2 changed files
with
50 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,22 @@ | ||
easyblock = 'Bundle' | ||
|
||
name = 'GCC' | ||
version = '9.2.0' | ||
|
||
homepage = 'https://gcc.gnu.org/' | ||
description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, | ||
as well as libraries for these languages (libstdc++, libgcj,...).""" | ||
|
||
toolchain = SYSTEM | ||
|
||
dependencies = [ | ||
('GCCcore', version), | ||
# binutils built on top of GCCcore, which was built on top of (dummy-built) binutils | ||
('binutils', '2.32', '', ('GCCcore', version)), | ||
] | ||
|
||
altroot = 'GCCcore' | ||
altversion = 'GCCcore' | ||
|
||
# this bundle serves as a compiler-only toolchain, so it should be marked as compiler (important for HMNS) | ||
moduleclass = 'compiler' |
28 changes: 28 additions & 0 deletions
28
easybuild/easyconfigs/o/OpenBLAS/OpenBLAS-0.3.8-GCC-9.2.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,28 @@ | ||
name = 'OpenBLAS' | ||
version = '0.3.8' | ||
|
||
homepage = 'https://xianyi.github.com/OpenBLAS/' | ||
description = "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version." | ||
|
||
toolchain = {'name': 'GCC', 'version': '9.2.0'} | ||
|
||
source_urls = [ | ||
# order matters, trying to download the large.tgz/timing.tgz LAPACK tarballs from GitHub causes trouble | ||
'https://www.netlib.org/lapack/timing/', | ||
'https://github.com/xianyi/OpenBLAS/archive/', | ||
] | ||
sources = ['v%(version)s.tar.gz'] | ||
patches = [ | ||
('large.tgz', '.'), | ||
('timing.tgz', '.'), | ||
] | ||
checksums = [ | ||
'8f86ade36f0dbed9ac90eb62575137388359d97d8f93093b38abe166ad7ef3a8', # v0.3.8.tar.gz | ||
'f328d88b7fa97722f271d7d0cfea1c220e0f8e5ed5ff01d8ef1eb51d6f4243a1', # large.tgz | ||
'999c65f8ea8bd4eac7f1c7f3463d4946917afd20a997807300fe35d70122f3af', # timing.tgz | ||
] | ||
|
||
# extensive testing can be enabled by uncommenting the line below | ||
# runtest = 'PATH=.:$PATH lapack-timing' | ||
|
||
moduleclass = 'numlib' |