Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.32.0 #62

Merged
merged 19 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Description

Please summarise the changes.

# Related issues

Please mention any github issues addressed by this PR.

# Checklist

- [ ] I have performed a self-review of my code.
- [ ] I have commented hard-to-understand parts of my code.
- [ ] I have made corresponding changes to the public API documentation.
- [ ] I have added tests that prove my fix is effective or that my feature works.
- [ ] I have updated the changelog with any user-facing changes.
24 changes: 14 additions & 10 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
docker pull rigetti/qvm
- name: Set up Python 3.9
if: github.event_name == 'push' || github.event_name == 'schedule'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Build and test (3.9)
Expand All @@ -46,7 +46,7 @@ jobs:
run: |
./.github/workflows/build-test nomypy
- name: Set up Python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build and test including remote checks (3.10) mypy
Expand All @@ -61,18 +61,18 @@ jobs:
./.github/workflows/build-test nomypy
- name: Set up Python 3.11
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build and test (3.11)
if: github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'schedule'
shell: bash
run: |
./.github/workflows/build-test nomypy
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: github.event_name == 'release' || contains(github.ref, 'refs/heads/wheel')
with:
name: artefacts
name: artefact-${{ matrix.os }}
path: wheelhouse/
- name: Install docs dependencies
if: (matrix.os == 'ubuntu-22.04') && (github.event_name == 'pull_request' || github.event_name == 'schedule' )
Expand All @@ -92,9 +92,13 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download all wheels
uses: actions/download-artifact@v3
# downloading all three files into the wheelhouse
# all files are identical, so there will only be one file
uses: actions/download-artifact@v4
with:
path: wheelhouse
pattern: artefact-*
merge-multiple: true
- name: Put them all in the dist folder
run: |
mkdir dist
Expand All @@ -116,11 +120,11 @@ jobs:
with:
fetch-depth: '0'
- name: Set up Python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Download all wheels
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: wheelhouse
- name: Install pip, wheel
Expand All @@ -137,7 +141,7 @@ jobs:
mkdir extensions
./build-docs -d ${GITHUB_WORKSPACE}/.github/workflows/docs/extensions/api
- name: Upload docs as artefact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: .github/workflows/docs/extensions

Expand All @@ -155,4 +159,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4.0.1
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Upgrade pip and install wheel
Expand All @@ -31,7 +31,7 @@ jobs:
cd .github/workflows/docs
mkdir extensions
./build-docs -d ${GITHUB_WORKSPACE}/.github/workflows/docs/extensions
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pytket-extension-docs
path: .github/workflows/docs/extensions/
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Update pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tests and is accepted after review, it will be merged in.

All code should be formatted using
[black](https://black.readthedocs.io/en/stable/), with default options. This is
checked on the CI. The CI is currently using version 20.8b1.
checked on the CI. The CI is currently using version 22.3.

#### Type annotation

Expand Down
2 changes: 1 addition & 1 deletion _metadata.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__extension_version__ = "0.31.0"
__extension_version__ = "0.32.0"
__extension_name__ = "pytket-pyquil"
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
~~~~~~~~~

0.32.0 (January 2024)
---------------------

* Updated pytket version requirement to 1.23.
* Don’t include :py:class:`SimplifyInitial` in default passes; instead make it an option to ``process_circuits()``.

0.31.0 (November 2023)
----------------------

Expand Down
35 changes: 25 additions & 10 deletions pytket/extensions/pyquil/backends/forest.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
EulerAngleReduction,
CXMappingPass,
auto_rebase_pass,
KAKDecomposition,
SequencePass,
SynthesiseTket,
DecomposeBoxes,
Expand Down Expand Up @@ -165,18 +166,16 @@ def default_compilation_pass(self, optimisation_level: int = 2) -> BasePass:
)
passlist.append(NaivePlacementPass(self.backend_info.architecture)) # type: ignore
if optimisation_level == 2:
passlist.append(CliffordSimp(False))
# Add some connectivity preserving optimisations after routing.
passlist.extend(
[KAKDecomposition(allow_swaps=False), CliffordSimp(allow_swaps=False)]
)
if optimisation_level > 0:
passlist.append(SynthesiseTket())
passlist.append(self.rebase_pass())
if optimisation_level > 0:
passlist.extend(
[
EulerAngleReduction(OpType.Rx, OpType.Rz),
SimplifyInitial(
allow_classical=False, create_all_qubits=True, xcirc=_xcirc
),
]
passlist.append(
EulerAngleReduction(OpType.Rx, OpType.Rz),
)
return SequencePass(passlist)

Expand All @@ -193,7 +192,15 @@ def process_circuits(
) -> List[ResultHandle]:
"""
See :py:meth:`pytket.backends.Backend.process_circuits`.
Supported kwargs: `seed`.

Supported kwargs:

* `seed`
* `postprocess`: apply end-of-circuit simplifications and classical
postprocessing to improve fidelity of results (bool, default False)
* `simplify_initial`: apply the pytket ``SimplifyInitial`` pass to improve
fidelity of results assuming all qubits initialized to zero (bool, default
False)
"""
circuits = list(circuits)
n_shots_list = Backend._get_n_shots_as_list(
Expand All @@ -204,6 +211,7 @@ def process_circuits(
self._check_all_circuits(circuits)

postprocess = kwargs.get("postprocess", False)
simplify_initial = kwargs.get("simplify_initial", False)

handle_list = []
for circuit, n_shots in zip(circuits, n_shots_list):
Expand All @@ -212,6 +220,13 @@ def process_circuits(
ppcirc_rep = ppcirc.to_dict()
else:
c0, ppcirc_rep = circuit, None

if simplify_initial:
_x_circ = Circuit(1).Rx(1, 0)
SimplifyInitial(
allow_classical=False, create_all_qubits=True, xcirc=_x_circ
).apply(circuit)

p, bits = tk_to_pyquil(c0, return_used_bits=True)
p.wrap_in_numshots_loop(n_shots)
ex = self._qc.compiler.native_quil_to_executable(p)
Expand Down Expand Up @@ -285,7 +300,7 @@ def backend_info(self) -> BackendInfo:
@classmethod
def _get_backend_info(cls, qc: QuantumComputer) -> BackendInfo:
char_dict: dict = process_characterisation(qc)
arch = char_dict.get("Architecture", Architecture([]))
arch = char_dict.get("Architecture")
node_errors = char_dict.get("NodeErrors")
link_errors: dict[tuple[Node, Node], float] = char_dict.get("EdgeErrors") # type: ignore
averaged_errors = get_avg_characterisation(char_dict)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
author_email="tket-support@cambridgequantum.com",
python_requires=">=3.8",
project_urls={
"Documentation": "https://tket.quantinuum.com/extensions/pytket-pyquil/api/index.html",
"Documentation": "https://tket.quantinuum.com/extensions/pytket-pyquil/index.html",
"Source": "https://github.com/CQCL/pytket-pyquil",
"Tracker": "https://github.com/CQCL/pytket-pyquil/issues",
},
Expand All @@ -44,7 +44,7 @@
packages=find_namespace_packages(include=["pytket.*"]),
include_package_data=True,
install_requires=[
"pytket ~= 1.22",
"pytket ~= 1.23",
"pyquil ~= 3.5",
"typing-extensions ~= 4.2",
],
Expand Down