Callum Macpherson
Callum Macpherson
I've added a brief manual section on Alec's `CustomPass` feature. I've put this under advanced topics, let me know if this is the appropriate place. The pass I've defined performs...
I have added a short section on the ``ToffoliBox`` feature to the manual. I'm happy to expand/shorten this as required. I have also moved the section entitled "Statevectors and unitaries"...
When demonstrating `IBMQBackend` in the [running on backends](https://tket.quantinuum.com/user-manual/manual_backend.html) section of the manual, we have code snippets for `ibmq_quito` and `ibmq_manilla` which are now retired. See also the examples https://tket.quantinuum.com/examples/spam_example.html https://tket.quantinuum.com/examples/backends_example.html...
# 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...
Hi I have now deployed my blog [here](https://tket.quantinuum.com/tket-blog/) (still a WIP). Ideally I would like the author info, date and topic categoies to appear under each post. See this example...
Hi, This is more of a question rather than a bug report. If preferred I can ask elsewhere instead of raising an issue here. I'm trying to build and deploy...
# Description After running the [sphinx coverage extension](https://www.sphinx-doc.org/en/master/usage/extensions/coverage.html) with ```shell sphinx-build -b coverage pytket/docs/ pytket/docs/build/ ``` I found some omissions from the API docs. Some of these omissions are not...
I'd expect to be able to calculate $\langle X\rangle$ on a qubit named `"p"` as follows with [QubitPauliString.state_expectation](https://tket.quantinuum.com/api-docs/pauli.html#pytket.pauli.QubitPauliString.state_expectation). ```python from pytket import Circuit, Qubit from pytket.pauli import Pauli, QubitPauliString circ...
Small bug pointed out by @alessum. @DNA386 Using pytket v1.11.1 ```python from pytket import Circuit from pytket.circuit.display import render_circuit_jupyter from pytket.extensions.qiskit import qiskit_to_tk, tk_to_qiskit circ1 = Circuit(2).CX(0, 1).Rz(0.2, 1).CX(0, 1)...