-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpartition_hypergraph_into_large_k.py
More file actions
37 lines (30 loc) · 1.28 KB
/
partition_hypergraph_into_large_k.py
File metadata and controls
37 lines (30 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Please follow the instructions in the README to install the python library interface and
# and copy mtkahypar.so to this folder to run the examples.
import os
import multiprocessing
import mtkahypar
mydir = os.path.dirname(os.path.realpath(__file__))
# Initialize
mtk = mtkahypar.initialize(multiprocessing.cpu_count()) # use all available cores
# Setup partitioning context
context = mtk.context_from_preset(mtkahypar.PresetType.LARGE_K)
# In the following, we partition a hypergraph into 512 blocks
# with an allowed imbalance of 3% and optimize the connectivity metric
context.set_partitioning_parameters(
512, # number of blocks
0.03, # imbalance parameter
mtkahypar.Objective.KM1) # objective function
mtkahypar.set_seed(42) # seed
context.logging = True
# Load hypergraph from file
hypergraph = mtk.hypergraph_from_file(
mydir + "/../tests/test_instances/ibm01.hgr", # hypergraph file
context,
mtkahypar.FileFormat.HMETIS) # hypergraph is stored in hMetis file format
# Partition hypergraph
partitioned_hg = hypergraph.partition(context)
# Output metrics
print("Partition Stats:")
print("Imbalance = " + str(partitioned_hg.imbalance(context)))
print("km1 = " + str(partitioned_hg.km1()))
print("cut = " + str(partitioned_hg.cut()))