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

Add LightSABRE to default_compilation_pass #400

Merged
merged 43 commits into from
Nov 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
83d83d2
add lightsabre custom pass
sjdilkes Oct 10, 2024
ed4d691
reformat, add descriptions
sjdilkes Oct 10, 2024
9f7846f
Update qiskit_convert.py
sjdilkes Oct 10, 2024
2f0d232
Update ibm_utils.py
sjdilkes Oct 10, 2024
2ba3eae
Update ibm_utils.py
sjdilkes Oct 10, 2024
100d4c3
Update ibm.py
sjdilkes Oct 14, 2024
68c9005
redirect CX gates
sjdilkes Oct 15, 2024
9b55926
Merge branch 'main' into LightSABRE-CustomPass
sjdilkes Oct 15, 2024
8afa0c5
Update aer.py
sjdilkes Oct 15, 2024
d4f494a
Update aer.py
sjdilkes Oct 15, 2024
a4f5de2
move Directed rewrite into `gen_lightsabre_transformation`
sjdilkes Oct 15, 2024
ad8b917
Update ibm_utils.py
sjdilkes Oct 15, 2024
185f785
Update ibm_utils.py
sjdilkes Oct 16, 2024
80e9e89
Update ibm_utils.py
sjdilkes Oct 16, 2024
c1db493
Update ibm_utils.py
sjdilkes Oct 16, 2024
a8ff759
rebase to CX gates to redirect ECR gates
sjdilkes Oct 16, 2024
10f1142
rebase to CX for noise model routing
sjdilkes Oct 21, 2024
59bd5dd
Merge branch 'main' into LightSABRE-CustomPass
sjdilkes Nov 7, 2024
09e9787
Update pytket-docs-theming
sjdilkes Nov 7, 2024
72d1edd
Update aer.py
sjdilkes Nov 7, 2024
4027b75
Update ibm.py
sjdilkes Nov 7, 2024
6d98d23
Update ibmq_emulator.py
sjdilkes Nov 7, 2024
ccb972a
Update ibm_utils.py
sjdilkes Nov 7, 2024
d0d2f6f
fix imports, reformat
sjdilkes Nov 7, 2024
70ca5b0
Update ibm_utils.py
sjdilkes Nov 7, 2024
af6a3bd
Update aer.py
sjdilkes Nov 7, 2024
e2472e3
Update changelog.md
sjdilkes Nov 7, 2024
38a8712
Update ibm_utils.py
sjdilkes Nov 7, 2024
481061a
Update ibm_utils.py
sjdilkes Nov 7, 2024
e0a4cdd
Update ibm_utils.py
sjdilkes Nov 7, 2024
ad57221
Update backend_test.py
sjdilkes Nov 7, 2024
4fd3537
Update backend_test.py
sjdilkes Nov 7, 2024
8c3a758
reformat, fix mypy
sjdilkes Nov 7, 2024
17939e0
reformat
sjdilkes Nov 7, 2024
b9be933
fix mypy issues
sjdilkes Nov 7, 2024
c942e88
fix mypy
sjdilkes Nov 7, 2024
a574dd9
Update index.md
sjdilkes Nov 7, 2024
38078eb
Update ibm_utils.py
sjdilkes Nov 8, 2024
e364c11
Merge branch 'LightSABRE-CustomPass' of https://github.com/CQCL/pytke…
sjdilkes Nov 8, 2024
fddd31f
Update backend_test.py
sjdilkes Nov 8, 2024
10518da
Merge branch 'main' into LightSABRE-CustomPass
sjdilkes Nov 8, 2024
e3ffea5
Update backend_test.py
sjdilkes Nov 8, 2024
7ead0a4
Update backend_test.py
sjdilkes Nov 8, 2024
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
Prev Previous commit
Next Next commit
Update ibmq_emulator.py
  • Loading branch information
sjdilkes committed Nov 7, 2024
commit 6d98d2362566e03b9107e73a3293b2310df34c9f
4 changes: 1 addition & 3 deletions pytket/extensions/qiskit/backends/ibmq_emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@

from collections.abc import Sequence
from typing import (
Optional,
Sequence,
TYPE_CHECKING,
Any,
Optional,
)

from qiskit_aer.noise.noise_model import NoiseModel # type: ignore
Expand All @@ -40,7 +39,6 @@

from qiskit_ibm_runtime import QiskitRuntimeService # type: ignore


class IBMQEmulatorBackend(Backend):
"""A backend which uses the AerBackend to loaclly emulate the behaviour of
IBMQBackend. Identical to :py:class:`IBMQBackend` except there is no `monitor`
Expand Down