Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
PyMetis.egg-info/ | H | 03-May-2022 | - | 58 | 51 | |
pymetis/ | H | 23-Aug-2020 | - | 123 | 90 | |
src/ | H | 23-Aug-2020 | - | 44,584 | 29,994 | |
test/ | H | 23-Aug-2020 | - | 136 | 99 | |
LICENSE | H A D | 01-Oct-2019 | 1.8 KiB | 42 | 31 | |
MANIFEST.in | H A D | 01-Oct-2019 | 230 | 12 | 10 | |
Makefile.in | H A D | 01-Oct-2019 | 225 | 18 | 12 | |
PKG-INFO | H A D | 23-Aug-2020 | 2.6 KiB | 58 | 51 | |
README.rst | H A D | 09-Apr-2020 | 1.3 KiB | 31 | 25 | |
aksetup_helper.py | H A D | 23-Aug-2020 | 31.2 KiB | 991 | 735 | |
configure.py | H A D | 15-Aug-2020 | 131 | 7 | 3 | |
setup.cfg | H A D | 23-Aug-2020 | 123 | 9 | 6 | |
setup.py | H A D | 23-Aug-2020 | 4.2 KiB | 129 | 105 |
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