qiskit-dynamics


Nameqiskit-dynamics JSON
Version 0.5.1 PyPI version JSON
download
home_pagehttps://github.com/Qiskit-Extensions/qiskit-dynamics
SummaryQiskit ODE solver
upload_time2024-03-25 17:16:14
maintainerNone
docs_urlNone
authorQiskit Development Team
requires_python>=3.9
licenseApache 2.0
keywords qiskit sdk quantum
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Qiskit Dynamics

[![License](https://img.shields.io/github/license/Qiskit/qiskit-dynamics.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.05853/status.svg)](https://doi.org/10.21105/joss.05853)

**This repo is still in the early stages of development, there will be breaking API changes**

Qiskit Dynamics is an open-source project for building, transforming, and solving time-dependent
quantum systems in Qiskit.

The goal of Qiskit Dynamics is to provide access to different numerical methods for solving
differential equations, and to automate common processes typically performed by hand, e.g. applying
frame transformations or rotating wave approximations to system and control Hamiltonians.

Qiskit Dynamics can be configured to use either [NumPy](https://github.com/numpy/numpy) or
[JAX](https://github.com/google/jax) as the backend for array operations.
[NumPy](https://github.com/numpy/numpy) is the default, and [JAX](https://github.com/google/jax) is
an optional dependency. [JAX](https://github.com/google/jax) provides just-in-time compilation,
automatic differentiation, and GPU execution, and therefore is well-suited to tasks involving
repeated evaluation of functions with different parameters; E.g. simulating a model of a quantum
system over a range of parameter values, or optimizing the parameters of control sequence.

Reference documentation may be found [here](https://qiskit-extensions.github.io/qiskit-dynamics/), including
[tutorials](https://qiskit-extensions.github.io/qiskit-dynamics/tutorials/index.html),
[user guide](https://qiskit-extensions.github.io/qiskit-dynamics/userguide/index.html),
[API reference](https://qiskit-extensions.github.io/qiskit-dynamics/apidocs/index.html), and
[Discussions](https://qiskit-extensions.github.io/qiskit-dynamics/discussions/index.html).

## Installation

Qiskit Dynamics may be installed using pip via:

```
pip install qiskit-dynamics
```

Additionally, Qiskit Dynamics may be installed simultaneously with the CPU version of
JAX via:

```
pip install "qiskit-dynamics[jax]"
```

Installing JAX with GPU support must be done manually, for instructions refer to the
[JAX installation guide](https://github.com/google/jax#installation).


## Contribution Guidelines

If you'd like to contribute to Qiskit Dynamics, please take a look at our 
[contribution guidelines](CONTRIBUTING.md). This project adheres to Qiskit's 
[code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.

We use [GitHub issues](https://github.com/Qiskit-Extensions/qiskit-dynamics/issues) for tracking
requests and bugs. Please [join the Qiskit Slack community](https://qisk.it/join-slack) and use our
[#qiskit-dynamics](https://qiskit.slack.com/archives/C03E7UVCDEV) channel for discussion and simple
questions. For questions that are more suited for a forum we use the Qiskit tag in the 
[Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).

## Authors and Citation

Qiskit Dynamics is the work of 
[many people](https://github.com/Qiskit-Extensions/qiskit-dynamics/graphs/contributors) who
contribute to the project at different levels. If you use Qiskit Dynamics, please cite our
[paper](https://joss.theoj.org/papers/10.21105/joss.05853) as per the included
[BibTeX file](https://github.com/Qiskit-Extensions/qiskit-dynamics/blob/main/CITATION.bib).

## License

[Apache License 2.0](LICENSE.txt)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Qiskit-Extensions/qiskit-dynamics",
    "name": "qiskit-dynamics",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "qiskit sdk quantum",
    "author": "Qiskit Development Team",
    "author_email": "qiskit@us.ibm.com",
    "download_url": "https://files.pythonhosted.org/packages/8f/76/4dd8bd06ccc704efbe1ad4f767649019451d729de5d718090cb3b27b91ab/qiskit-dynamics-0.5.1.tar.gz",
    "platform": null,
    "description": "# Qiskit Dynamics\n\n[![License](https://img.shields.io/github/license/Qiskit/qiskit-dynamics.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)\n[![DOI](https://joss.theoj.org/papers/10.21105/joss.05853/status.svg)](https://doi.org/10.21105/joss.05853)\n\n**This repo is still in the early stages of development, there will be breaking API changes**\n\nQiskit Dynamics is an open-source project for building, transforming, and solving time-dependent\nquantum systems in Qiskit.\n\nThe goal of Qiskit Dynamics is to provide access to different numerical methods for solving\ndifferential equations, and to automate common processes typically performed by hand, e.g. applying\nframe transformations or rotating wave approximations to system and control Hamiltonians.\n\nQiskit Dynamics can be configured to use either [NumPy](https://github.com/numpy/numpy) or\n[JAX](https://github.com/google/jax) as the backend for array operations.\n[NumPy](https://github.com/numpy/numpy) is the default, and [JAX](https://github.com/google/jax) is\nan optional dependency. [JAX](https://github.com/google/jax) provides just-in-time compilation,\nautomatic differentiation, and GPU execution, and therefore is well-suited to tasks involving\nrepeated evaluation of functions with different parameters; E.g. simulating a model of a quantum\nsystem over a range of parameter values, or optimizing the parameters of control sequence.\n\nReference documentation may be found [here](https://qiskit-extensions.github.io/qiskit-dynamics/), including\n[tutorials](https://qiskit-extensions.github.io/qiskit-dynamics/tutorials/index.html),\n[user guide](https://qiskit-extensions.github.io/qiskit-dynamics/userguide/index.html),\n[API reference](https://qiskit-extensions.github.io/qiskit-dynamics/apidocs/index.html), and\n[Discussions](https://qiskit-extensions.github.io/qiskit-dynamics/discussions/index.html).\n\n## Installation\n\nQiskit Dynamics may be installed using pip via:\n\n```\npip install qiskit-dynamics\n```\n\nAdditionally, Qiskit Dynamics may be installed simultaneously with the CPU version of\nJAX via:\n\n```\npip install \"qiskit-dynamics[jax]\"\n```\n\nInstalling JAX with GPU support must be done manually, for instructions refer to the\n[JAX installation guide](https://github.com/google/jax#installation).\n\n\n## Contribution Guidelines\n\nIf you'd like to contribute to Qiskit Dynamics, please take a look at our \n[contribution guidelines](CONTRIBUTING.md). This project adheres to Qiskit's \n[code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.\n\nWe use [GitHub issues](https://github.com/Qiskit-Extensions/qiskit-dynamics/issues) for tracking\nrequests and bugs. Please [join the Qiskit Slack community](https://qisk.it/join-slack) and use our\n[#qiskit-dynamics](https://qiskit.slack.com/archives/C03E7UVCDEV) channel for discussion and simple\nquestions. For questions that are more suited for a forum we use the Qiskit tag in the \n[Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).\n\n## Authors and Citation\n\nQiskit Dynamics is the work of \n[many people](https://github.com/Qiskit-Extensions/qiskit-dynamics/graphs/contributors) who\ncontribute to the project at different levels. If you use Qiskit Dynamics, please cite our\n[paper](https://joss.theoj.org/papers/10.21105/joss.05853) as per the included\n[BibTeX file](https://github.com/Qiskit-Extensions/qiskit-dynamics/blob/main/CITATION.bib).\n\n## License\n\n[Apache License 2.0](LICENSE.txt)\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Qiskit ODE solver",
    "version": "0.5.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/Qiskit-Extensions/qiskit-dynamics/issues",
        "Documentation": "https://qiskit-extensions.github.io/qiskit-dynamics/",
        "Homepage": "https://github.com/Qiskit-Extensions/qiskit-dynamics",
        "Source Code": "https://github.com/Qiskit-Extensions/qiskit-dynamics"
    },
    "split_keywords": [
        "qiskit",
        "sdk",
        "quantum"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2f12fb9c6ac288b3e23e8429b6e7ad317c9d9bceccd1d90a142258b8e4e94b1",
                "md5": "1f6f1f57095ced42c63bb664bafd8053",
                "sha256": "b39a11a63ffe7c12cef1c925f25af705f657f7c57122baeb63790b025b8910aa"
            },
            "downloads": -1,
            "filename": "qiskit_dynamics-0.5.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1f6f1f57095ced42c63bb664bafd8053",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 191793,
            "upload_time": "2024-03-25T17:16:13",
            "upload_time_iso_8601": "2024-03-25T17:16:13.488116Z",
            "url": "https://files.pythonhosted.org/packages/d2/f1/2fb9c6ac288b3e23e8429b6e7ad317c9d9bceccd1d90a142258b8e4e94b1/qiskit_dynamics-0.5.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f764dd8bd06ccc704efbe1ad4f767649019451d729de5d718090cb3b27b91ab",
                "md5": "f3dd3f308b1aac3191fdb0c0bd062d73",
                "sha256": "63efe284221a9b873dcaefed5d961ed3a2d8dfa975b4ed981538de1dd656c98d"
            },
            "downloads": -1,
            "filename": "qiskit-dynamics-0.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f3dd3f308b1aac3191fdb0c0bd062d73",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 145778,
            "upload_time": "2024-03-25T17:16:14",
            "upload_time_iso_8601": "2024-03-25T17:16:14.895902Z",
            "url": "https://files.pythonhosted.org/packages/8f/76/4dd8bd06ccc704efbe1ad4f767649019451d729de5d718090cb3b27b91ab/qiskit-dynamics-0.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 17:16:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Qiskit-Extensions",
    "github_project": "qiskit-dynamics",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "qiskit-dynamics"
}
        
Elapsed time: 0.32932s