├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── docs.yml │ ├── format.yml │ ├── post_release_version_bump.yml │ ├── pre_release_version_bump.yml │ ├── tests.yml │ └── upload.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── doc ├── Makefile ├── _ext │ └── edit_on_github.py ├── _static │ ├── code.png │ ├── favicon.ico │ ├── logo.png │ ├── logo_new.png │ ├── pennylane.svg │ ├── pl_wordmark.png │ ├── puzzle.png │ └── quantum_volume_thumbnail.png ├── code.rst ├── conf.py ├── devices │ ├── aer.rst │ ├── basicsim.rst │ └── remote.rst ├── directives.py ├── index.rst ├── installation.rst ├── requirements.txt └── support.rst ├── pennylane_qiskit ├── __init__.py ├── _version.py ├── aer.py ├── basic_sim.py ├── converter.py ├── noise_models.py ├── qiskit_device.py ├── qiskit_device_legacy.py └── remote.py ├── requirements-ci.txt ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── tests ├── .pylintrc ├── conftest.py ├── pytest.ini ├── test_apply.py ├── test_base_device.py ├── test_converter.py ├── test_expval.py ├── test_integration.py ├── test_inverses.py ├── test_noise_models.py ├── test_qiskit_device.py └── test_var.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/post_release_version_bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/workflows/post_release_version_bump.yml -------------------------------------------------------------------------------- /.github/workflows/pre_release_version_bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/workflows/pre_release_version_bump.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.github/workflows/upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_ext/edit_on_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_ext/edit_on_github.py -------------------------------------------------------------------------------- /doc/_static/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/code.png -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/logo.png -------------------------------------------------------------------------------- /doc/_static/logo_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/logo_new.png -------------------------------------------------------------------------------- /doc/_static/pennylane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/pennylane.svg -------------------------------------------------------------------------------- /doc/_static/pl_wordmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/pl_wordmark.png -------------------------------------------------------------------------------- /doc/_static/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/puzzle.png -------------------------------------------------------------------------------- /doc/_static/quantum_volume_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/_static/quantum_volume_thumbnail.png -------------------------------------------------------------------------------- /doc/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/code.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/devices/aer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/devices/aer.rst -------------------------------------------------------------------------------- /doc/devices/basicsim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/devices/basicsim.rst -------------------------------------------------------------------------------- /doc/devices/remote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/devices/remote.rst -------------------------------------------------------------------------------- /doc/directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/directives.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/doc/support.rst -------------------------------------------------------------------------------- /pennylane_qiskit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/__init__.py -------------------------------------------------------------------------------- /pennylane_qiskit/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/_version.py -------------------------------------------------------------------------------- /pennylane_qiskit/aer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/aer.py -------------------------------------------------------------------------------- /pennylane_qiskit/basic_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/basic_sim.py -------------------------------------------------------------------------------- /pennylane_qiskit/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/converter.py -------------------------------------------------------------------------------- /pennylane_qiskit/noise_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/noise_models.py -------------------------------------------------------------------------------- /pennylane_qiskit/qiskit_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/qiskit_device.py -------------------------------------------------------------------------------- /pennylane_qiskit/qiskit_device_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/qiskit_device_legacy.py -------------------------------------------------------------------------------- /pennylane_qiskit/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/pennylane_qiskit/remote.py -------------------------------------------------------------------------------- /requirements-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/requirements-ci.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements-ci.txt 2 | 3 | pre-commit 4 | pylint 5 | black 6 | isort 7 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/.pylintrc -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_apply.py -------------------------------------------------------------------------------- /tests/test_base_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_base_device.py -------------------------------------------------------------------------------- /tests/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_converter.py -------------------------------------------------------------------------------- /tests/test_expval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_expval.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_inverses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_inverses.py -------------------------------------------------------------------------------- /tests/test_noise_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_noise_models.py -------------------------------------------------------------------------------- /tests/test_qiskit_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_qiskit_device.py -------------------------------------------------------------------------------- /tests/test_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-qiskit/HEAD/tests/test_var.py --------------------------------------------------------------------------------