-
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 #21347 from SebastianAchilles/20240906224629_new_p…
…r_METIS510 {math}[GCCcore/13.3.0] METIS v5.1.0
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/m/METIS/METIS-5.1.0-GCCcore-13.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,36 @@ | ||
name = 'METIS' | ||
version = '5.1.0' | ||
|
||
homepage = 'http://glaros.dtc.umn.edu/gkhome/metis/metis/overview' | ||
|
||
description = """ | ||
METIS is a set of serial programs for partitioning graphs, partitioning | ||
finite element meshes, and producing fill reducing orderings for sparse | ||
matrices. The algorithms implemented in METIS are based on the multilevel | ||
recursive-bisection, multilevel k-way, and multi-constraint partitioning | ||
schemes. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = [ | ||
'http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis', | ||
'http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/OLD', | ||
] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
patches = ['%(name)s-%(version)s-use-doubles.patch'] | ||
checksums = [ | ||
{'metis-5.1.0.tar.gz': '76faebe03f6c963127dbb73c13eab58c9a3faeae48779f049066a21c087c5db2'}, | ||
{'METIS-5.1.0-use-doubles.patch': '7e38a3ec8f2b8e3d189239bade5b28c0dd1c564485050109164fa71a6a767c67'}, | ||
] | ||
|
||
# We use 32bit for indices and 64bit for content | ||
builddependencies = [ | ||
('binutils', '2.42'), | ||
('CMake', '3.29.3'), | ||
] | ||
|
||
configopts = ['', 'shared=1'] | ||
|
||
moduleclass = 'math' |