-
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: BLIS-0.8.1-GCCcore-10.3.0.eb
- Loading branch information
1 parent
ec3676d
commit a6dfee5
Showing
1 changed file
with
34 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,34 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'BLIS' | ||
version = '0.8.1' | ||
|
||
homepage = 'https://github.com/flame/blis/' | ||
description = """BLIS is a portable software framework for instantiating high-performance | ||
BLAS-like dense linear algebra libraries.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '10.3.0'} | ||
|
||
source_urls = ['https://github.com/flame/blis/archive/'] | ||
sources = ['%(version)s.tar.gz'] | ||
checksums = ['729694128719801e82fae7b5f2489ab73e4a467f46271beff09588c9265a697b'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.36.1'), | ||
('Python', '3.9.5'), | ||
('Perl', '5.32.1'), | ||
] | ||
|
||
configopts = '--enable-cblas --enable-threading=openmp --enable-shared CC="$CC" auto' | ||
|
||
runtest = 'check' | ||
|
||
sanity_check_paths = { | ||
'files': ['include/blis/cblas.h', 'include/blis/blis.h', | ||
'lib/libblis.a', 'lib/libblis.%s' % SHLIB_EXT], | ||
'dirs': [], | ||
} | ||
|
||
modextrapaths = {'CPATH': 'include/blis'} | ||
|
||
moduleclass = 'numlib' |