summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Olesen <Mark.Olesen@gmx.net>2017-06-28 19:15:43 +0100
committerAdam J. Stewart <ajstewart426@gmail.com>2017-06-28 13:15:43 -0500
commite5c665600cc0fccafaea9eec074660e477910542 (patch)
treee6396dec808bb4d0f03bd4d8110c5581ea58357d
parent898c7f8838bc78b8d9679dfd9ff32eb575766e91 (diff)
downloadspack-e5c665600cc0fccafaea9eec074660e477910542.tar.gz
spack-e5c665600cc0fccafaea9eec074660e477910542.tar.bz2
spack-e5c665600cc0fccafaea9eec074660e477910542.tar.xz
spack-e5c665600cc0fccafaea9eec074660e477910542.zip
new package for KaHIP (#4613)
-rw-r--r--var/spack/repos/builtin/packages/kahip/package.py80
1 files changed, 80 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/kahip/package.py b/var/spack/repos/builtin/packages/kahip/package.py
new file mode 100644
index 0000000000..2bc127a4c2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/kahip/package.py
@@ -0,0 +1,80 @@
+##############################################################################
+# Copyright (c) 2017 Christian Schulz
+# Karlsruhe Institute of Technology (KIT), Karlsruhe, Germany
+#
+# This file is released as part of Spack under the LGPL license
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the NOTICE and LICENSE file for the LLNL notice and LGPL.
+#
+# License
+# -------
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+import os
+import re
+
+
+class Kahip(Package):
+ """KaHIP - Karlsruhe High Quality Partitioning - is a family of graph
+ partitioning programs. It includes KaFFPa (Karlsruhe Fast Flow
+ Partitioner), which is a multilevel graph partitioning algorithm,
+ in its variants Strong, Eco and Fast, KaFFPaE (KaFFPaEvolutionary)
+ which is a parallel evolutionary algorithm that uses KaFFPa to
+ provide combine and mutation operations, as well as KaBaPE which
+ extends the evolutionary algorithm. Moreover, specialized
+ techniques are included to partition road networks (Buffoon), to
+ output a vertex separator from a given partition or techniques
+ geared towards efficient partitioning of social networks.
+ """
+
+ homepage = 'http://algo2.iti.kit.edu/documents/kahip/index.html'
+ url = 'http://algo2.iti.kit.edu/schulz/software_releases/KaHIP_2.00.tar.gz'
+
+ version('develop', git='https://github.com/schulzchristian/KaHIP.git')
+ version('2.00', '9daeda32f43c90570ed436d5d93c8a872b1a14d8')
+
+ depends_on('argtable')
+ depends_on('mpi') # Note: upstream package only tested on openmpi
+ depends_on('scons', type='build')
+
+ phases = ['build', 'install']
+
+ #
+ # - End of definitions / setup -
+ #
+
+ def build(self, spec, prefix):
+ """Build using the KaHIP compile.sh script. Uses scons internally."""
+ builder = Executable('./compile.sh')
+ builder()
+
+ def install(self, spec, prefix):
+ """Install under the prefix"""
+ # Ugly: all files land under 'deploy' and we need to disentangle them
+ mkdirp(prefix.bin)
+ mkdirp(prefix.include)
+ mkdirp(prefix.lib)
+
+ with working_dir('deploy'):
+ for f in os.listdir('.'):
+ if re.match(r'.*\.(a|so|dylib)$', f):
+ install(f, prefix.lib)
+ elif re.match(r'.*\.h$', f):
+ install(f, prefix.include)
+ else:
+ install(f, prefix.bin)