The graph partitioning framework KaHIP -- Karlsruhe High Quality Partitioning.
The graph partitioning problem asks for a division of a graph's node set into k equally sized blocks such that the number of edges that run between the blocks is minimized. KaHIP 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 as well as techniques geared towards the efficient partitioning of social networks.
ParHIP (Parallel High Quality Partitioning): Our distributed memory parallel partitioning techniques designed to partition hierarchically structured networks such as web graphs or social networks.
Mapping Algorithms: Our new algorithms to map the blocks onto processors to minimize overall communication time based on hierarchical partitionings of the task graph and fast local search algorithms.
https://algo2.iti.kit.edu/documents/kahip/index.html
Before you can start you need to install the following software packages:
- Scons (https://www.scons.org/)
- Argtable (https://argtable.sourceforge.net/)
- OpenMPI (https://www.open-mpi.de/)
Once you installed the packages, just type ./compile.sh. Once you did that you can try to run the following command:
./deploy/kaffpa examples/delaunay_n15.graph --k 2 --preconfiguration=strong
For a description of the graph format please have a look into the manual.