Skip to content
README.rst 2.28 KiB
Newer Older
PyMetis: A Python Wrapper for METIS
===================================

.. image:: https://gitlab.tiker.net/inducer/pymetis/badges/master/pipeline.svg
    :alt: Gitlab Build Status
    :target: https://gitlab.tiker.net/inducer/pymetis/commits/master
.. image:: https://github.com/inducer/pymetis/workflows/CI/badge.svg?branch=master&event=push
    :alt: Github Build Status
    :target: https://github.com/inducer/pymetis/actions?query=branch%3Amaster+workflow%3ACI+event%3Apush
.. image:: https://badge.fury.io/py/pymetis.png
    :alt: Python Package Index Release Page
    :target: https://pypi.org/project/pymetis/

Andreas Klöckner's avatar
Andreas Klöckner committed
PyMetis is a Python wrapper for the `Metis
<http://glaros.dtc.umn.edu/gkhome/views/metis>`_ graph partititioning software
by George Karypis, Vipin Kumar and others. It includes version 5.1.0 of Metis
and wraps it using the `Boost Python <http://www.boost.org/libs/python/doc/>`_
wrapper generator library. So far, it only wraps the most basic graph
partitioning functionality (which is enough for my current use), but extending
it in case you need more should be quite straightforward. Using PyMetis to
partition your meshes is really easy--essentially all you need to pass into
PyMetis is an adjacency list for the graph and the number of parts you would
like.

Installation
============

The following line should do the job::

    pip install pymetis

Quick Start
===========

This graph, adapted from Figure 2 of the Metis
`manual <http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/manual.pdf>`_ to
use zero-based indexing,

.. image:: images/tiny_01.png

can be defined and partitioned into two graphs with

AlDanial's avatar
AlDanial committed
.. code:: python

    import pymetis
    adjacency_list = [array([4, 2, 1]),
                      array([0, 2, 3]),
                      array([4, 3, 1, 0]),
                      array([1, 2, 5, 6]),
                      array([0, 2, 5]),
                      array([4, 3, 6]),
                      array([5, 3])]
    pymetis.part_graph(2, adjacency=adjacency_list)
    n_cuts, membership = pymetis.part_graph(2, adjacency=adjacency_list)
    # n_cuts = 3
    # membership = [1, 1, 1, 0, 1, 0, 0]

    nodes_part_0 = np.argwhere(np.array(membership) == 0).ravel() # [3, 5, 6]
    nodes_part_1 = np.argwhere(np.array(membership) == 1).ravel() # [0, 1, 2, 4]

.. image:: images/tiny_01_partitioned.png