├── .coveragerc ├── .github ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── format.yml │ ├── post_release_version_bump.yml │ ├── pre_release_version_bump.yml │ ├── tests.yml │ └── upload.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yml ├── LICENSE ├── Makefile ├── README.rst ├── doc ├── Makefile ├── _ext │ └── edit_on_github.py ├── _static │ ├── favicon.ico │ ├── logo.png │ ├── logo_new.png │ ├── pennylane.png │ ├── pennylane.svg │ ├── puzzle_sf.png │ └── xanadu_x.png ├── code.rst ├── conf.py ├── devices │ ├── fock.rst │ ├── gaussian.rst │ ├── gbs.rst │ ├── remote.rst │ └── tf.rst ├── index.rst ├── installation.rst ├── ops.rst ├── requirements.txt └── support.rst ├── pennylane_sf ├── __init__.py ├── _version.py ├── expectations.py ├── fock.py ├── gaussian.py ├── gbs.py ├── ops.py ├── remote.py ├── simulator.py └── tf.py ├── requirements-ci.txt ├── requirements.txt ├── setup.py └── tests ├── conftest.py ├── test_fock.py ├── test_gaussian.py ├── test_gbs.py ├── test_remote.py ├── test_shared.py ├── test_tf.py └── test_wires.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/CHANGELOG.md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/post_release_version_bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/workflows/post_release_version_bump.yml -------------------------------------------------------------------------------- /.github/workflows/pre_release_version_bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/workflows/pre_release_version_bump.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.github/workflows/upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_ext/edit_on_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_ext/edit_on_github.py -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/logo.png -------------------------------------------------------------------------------- /doc/_static/logo_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/logo_new.png -------------------------------------------------------------------------------- /doc/_static/pennylane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/pennylane.png -------------------------------------------------------------------------------- /doc/_static/pennylane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/pennylane.svg -------------------------------------------------------------------------------- /doc/_static/puzzle_sf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/puzzle_sf.png -------------------------------------------------------------------------------- /doc/_static/xanadu_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/_static/xanadu_x.png -------------------------------------------------------------------------------- /doc/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/code.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/devices/fock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/devices/fock.rst -------------------------------------------------------------------------------- /doc/devices/gaussian.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/devices/gaussian.rst -------------------------------------------------------------------------------- /doc/devices/gbs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/devices/gbs.rst -------------------------------------------------------------------------------- /doc/devices/remote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/devices/remote.rst -------------------------------------------------------------------------------- /doc/devices/tf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/devices/tf.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/ops.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/ops.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/doc/support.rst -------------------------------------------------------------------------------- /pennylane_sf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/__init__.py -------------------------------------------------------------------------------- /pennylane_sf/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/_version.py -------------------------------------------------------------------------------- /pennylane_sf/expectations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/expectations.py -------------------------------------------------------------------------------- /pennylane_sf/fock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/fock.py -------------------------------------------------------------------------------- /pennylane_sf/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/gaussian.py -------------------------------------------------------------------------------- /pennylane_sf/gbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/gbs.py -------------------------------------------------------------------------------- /pennylane_sf/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/ops.py -------------------------------------------------------------------------------- /pennylane_sf/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/remote.py -------------------------------------------------------------------------------- /pennylane_sf/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/simulator.py -------------------------------------------------------------------------------- /pennylane_sf/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/pennylane_sf/tf.py -------------------------------------------------------------------------------- /requirements-ci.txt: -------------------------------------------------------------------------------- 1 | strawberryfields 2 | pennylane<0.30 3 | tensorflow<2.13 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_fock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_fock.py -------------------------------------------------------------------------------- /tests/test_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_gaussian.py -------------------------------------------------------------------------------- /tests/test_gbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_gbs.py -------------------------------------------------------------------------------- /tests/test_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_remote.py -------------------------------------------------------------------------------- /tests/test_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_shared.py -------------------------------------------------------------------------------- /tests/test_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_tf.py -------------------------------------------------------------------------------- /tests/test_wires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PennyLaneAI/pennylane-sf/HEAD/tests/test_wires.py --------------------------------------------------------------------------------