Giter Club home page Giter Club logo

qopt's Introduction

qopt: A Simulation and Quantum Optimal Control Package

Build Status Documentation Status PyPI version License

Documentation

The documentation can be found on readthedocs. It features an API documentation and an introduction in the form of jupyter notebooks demonstrating how to utilize the package. A complementary theoretical introduction is given in the qopt paper on Phys. Rev. Applied and an older version can be found on the Arxiv.

Applications

We set up another open-source repository named qopt-applications to save and exchange quantum simulation and optimal control applications implemented using qopt.

Introduction

Realistic modelling of qubit systems including noise and constraints imposed by control hardware is required for performance prediction and control optimization of quantum processors. qopt is a software framework for simulating qubit dynamics and robust quantum optimal control considering common experimental situations. It supports modelling of open and closed qubit systems with a focus on the simulation of realistic noise characteristics and experimental constraints. Specifically, the influence of noise can be calculated using Monte Carlo methods, effective master equations or with the filter function formalism, enabling the investigation and mitigation of auto-correlated noise. In addition, limitations of control electronics including finite bandwidth effects can be considered. The calculation of gradients based on analytic results is implemented to facilitate the efficient optimization of control pulses. The software is published under an open source license, well-tested and features a detailed documentation.

Installation

Qopt is available on github and the python index Pypi. To install qopt directly from the python index, you can use pip:

pip install qopt

or alternatively download the source code, navigate to the folder containing qopt and install by

pip install . 

or append the command -e to install qopt with symlinks

pip -e install . 

The -e stands for edible as the symlinks allow you to make local changes to the sourcecode.

Optional packages

If you wish to use the plotting features of the quantum toolbox in pythen (QuTiP), then you need to install additional dependencies:

conda install cython pytest pytest-cov jupyter

Then open a conda forge channel:

conda config --append channels conda-forge

and install QuTiP:

conda install qutip

Another optional package is simanneal for the use of simulated annealing for discrete optimization:

conda install simanneal

Feature Requests

If you require an additional feature for your work, then please open an issue on github or reach out to me via e-mail [email protected]. There is a list in markdown format with possible extensions to the package.

Patch Notes

You can find the patch Notes in a markdown file in the root folder of the package. You can also find it on github.

Citing

If you are using qopt for your work then please cite the qopt paper, as the funding of the development depends on the public impact.

qopt's People

Contributors

christiangorjaew avatar jdteske avatar nomos11 avatar paulsurrey avatar stillpaul avatar terrorfisch avatar thangleiter avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

qopt's Issues

Distinguish DenseOperator from numpy array in __repr__

Currently DenseOperator's __repr__ method simply forwards the call to the underlying ndarray. This can obscure the data type in a REPL workflow since printing the DenseOperator will not tell the user that it is actually a DenseOperator.

I suggest adding a bit of information along the lines of a QuTiP Qobj:

Quantum object: dims = [[2], [2]], shape = (2, 2), type = oper, isherm = False
Qobj data =
[[0. 0.]
 [1. 0.]]

So maybe something like this:

def __repr__(self):
    s = 'DenseOperator with data\n' + str(self.data)

Spyder dependency

Is there a reason why Spyder is a dependency? In my experience, it causes trouble when installing (even if Spyder is already installed).

TypeError in `OptimizationResult.from_dict()`

The function to_dict() of OptimizationResult stores the variable final_parameters under the key final_amps. Therefore, I get an error message when rehydrating the object again:

result = optimizer.run_optimization(initial_control_amplitudes=initial_pulse)
OptimizationResult.from_dict(result.to_dict())

leads to the error TypeError: __init__() got an unexpected keyword argument 'final_amps'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.