Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.49 KB

File metadata and controls

44 lines (33 loc) · 1.49 KB

Metagraph

Conda Version Build Status Coverage Status License Code style Documentation Status

Python library for running graph algorithms on a variety of hardware backends. Data representing the graph will be automatically converted between available hardware options to find an efficient solution.

Visit ReadTheDocs page for more details.

Development Environment

To create a new development environment:

conda env create
conda activate mg
pre-commit install  # for black
python setup.py develop

To run unit tests + coverage automatically

pytest

To build web documentation

cd docs
make html

To build PDF documentation

cd docs
make latexpdf