• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

PyMetis.egg-info/H03-May-2022-5851

pymetis/H23-Aug-2020-12390

src/H23-Aug-2020-44,58429,994

test/H23-Aug-2020-13699

LICENSEH A D01-Oct-20191.8 KiB4231

MANIFEST.inH A D01-Oct-2019230 1210

Makefile.inH A D01-Oct-2019225 1812

PKG-INFOH A D23-Aug-20202.6 KiB5851

README.rstH A D09-Apr-20201.3 KiB3125

aksetup_helper.pyH A D23-Aug-202031.2 KiB991735

configure.pyH A D15-Aug-2020131 73

setup.cfgH A D23-Aug-2020123 96

setup.pyH A D23-Aug-20204.2 KiB129105

README.rst

1PyMetis: A Python Wrapper for METIS
2===================================
3
4.. image:: https://gitlab.tiker.net/inducer/pymetis/badges/master/pipeline.svg
5    :alt: Gitlab Build Status
6    :target: https://gitlab.tiker.net/inducer/pymetis/commits/master
7.. image:: https://github.com/inducer/pymetis/workflows/CI/badge.svg?branch=master&event=push
8    :alt: Github Build Status
9    :target: https://github.com/inducer/pymetis/actions?query=branch%3Amaster+workflow%3ACI+event%3Apush
10.. image:: https://badge.fury.io/py/pymetis.png
11    :alt: Python Package Index Release Page
12    :target: https://pypi.org/project/pymetis/
13
14PyMetis is a Python wrapper for the `Metis
15<http://glaros.dtc.umn.edu/gkhome/views/metis>`_ graph partititioning software
16by George Karypis, Vipin Kumar and others. It includes version 5.1.0 of Metis
17and wraps it using the `Boost Python <http://www.boost.org/libs/python/doc/>`_
18wrapper generator library. So far, it only wraps the most basic graph
19partitioning functionality (which is enough for my current use), but extending
20it in case you need more should be quite straightforward. Using PyMetis to
21partition your meshes is really easy--essentially all you need to pass into
22PyMetis is an adjacency list for the graph and the number of parts you would
23like.
24
25Installation
26============
27
28The following line should do the job::
29
30    pip install pymetis
31