Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gecrooks/quantumflow

QuantumFlow: A Quantum Algorithms Development Toolkit
https://github.com/gecrooks/quantumflow

automatic-differentiation quantum-algorithms quantum-computing quantum-machine-learning

Last synced: about 17 hours ago
JSON representation

QuantumFlow: A Quantum Algorithms Development Toolkit

Awesome Lists containing this project

README

        

# QuantumFlow: A Quantum Algorithms Development Toolkit

A cross-compiler for gate based models of quantum computing

![Build Status](https://github.com/gecrooks/quantumflow-dev/workflows/Build/badge.svg) [![Documentation Status](https://readthedocs.org/projects/quantumflow/badge/?version=latest)](https://quantumflow.readthedocs.io/en/latest/?badge=latest) [![PyPi version](https://img.shields.io/pypi/v/quantumflow?color=brightgreen)](https://pypi.org/project/quantumflow/)

* [Tutorial](https://github.com/gecrooks/quantumflow-dev/tree/master/tutorial)
* [Source Code](https://github.com/gecrooks/quantumflow)
* [Issue Tracker](https://github.com/gecrooks/quantumflow-dev/issues)
* [API Documentation](https://quantumflow.readthedocs.io/)

## Installation

To install the latest stable release:
```
$ pip install quantumflow
```

In addition, install all of the external quantum libraries that QuantumFlow can interact with (such as cirq, qiskit, braket, ect.):
```
$ pip install quantumflow[ext]
```

To install the latest code from github ready for development:
```
$ git clone https://github.com/gecrooks/quantumflow.git
$ cd quantumflow
$ pip install -e .[dev]
```