You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I need more information about that bug. In my side, the same tutorial works.
Did you add 'self.aer_compiler.compile_circuit(tket_qc, optimisation_level=2)' by yourself? I cannot find such a line in an original source code. (Maybe "self.backend_tket.compile_circuit(tket_qc, optimisation_level=2)" was commented out.
It seems the bugs came from the tket compiler. How about the version of pytket and pytket-qiskit?
In the original code, transpile functions is ↓
def transpile(self):
I met exactly the same question, and I guess the issue is about the package versions. Could you send yours such that we can install the correct packages?
I tried to use your notebook file "tutorial_aqcel". When I run all cell, the code below
aqcel_results_cc = icepp.pass_manager(test, level=2, backend=backend, backend_tket=dev_b, shots=1024, measure_type='cc').auto_manager()
gives the error mentioned below
-----> 'IBMQBackend' object has no attribute 'transpile'
Seems like there is a problem in the source code
`def transpile(self):
line
self.backend_tket.compile_circuit(tket_qc, optimisation_level=2)
gives the above mentioned error. Can you help to resolve the issue?My qiskit version is
{'qiskit-terra': '0.18.3', 'qiskit-aer': '0.9.1', 'qiskit-ignis': '0.6.0', 'qiskit-ibmq-provider': '0.18.1', 'qiskit-aqua': '0.9.5', 'qiskit': '0.32.1', 'qiskit-nature': None, 'qiskit-finance': None, 'qiskit-optimization': None, 'qiskit-machine-learning': None}
The text was updated successfully, but these errors were encountered: