Jake Muff
Jake Muff
I would actually like to keep this open. It seems in https://github.com/AqueductHub/aqueductcore/commit/5dbc428822a5e7c5fd2bf46d4b914f366e6dc201 a flag was added to the CI to auto generate release notes. However, as a user, it would...
Works thanks!
Whilst some checks were added in https://github.com/PennyLaneAI/pennylane-qiskit/pull/493 . To support all backends we have been using ``` def validate_wires_against_backend(self): b = self.backend try: num_qubits = int(b.configuration().n_qubits) except AttributeError: try: num_qubits...
Additionally, the file `src/iqm/qiskit-on-iqm/iqm_transpilation.py` has additional problems: 1. Usage of single quotes. This project uses black which prefers double quotes 2. Inconsistent British and american english `optimise` vs `optimize`. Also...
Thanks @manzanillo !