Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

The old provider is stuck on the way back from the device to my console #1174

@yaelbh

Description

@yaelbh

It's important for me to still use the old provider because of bugs with the new provider, using pulses. I'll try to create small examples and open separate issues.

When I run a simple circuit on the old provider:

from qiskit import QuantumCircuit, IBMQ

IBMQ.load_account()

provider = IBMQ.get_provider(<details>)
backend = provider.backend.<backend name>

circ = QuantumCircuit(1, 1)
circ.x(0)
circ.measure(0, 0)

res = backend.run(circ).result()
print(res.get_counts(0))

I can see on the IQX page that the job completed successfully. But my console gets stuck and never reaches the print line.

With the new provider it works fine.

Metadata

Metadata

Assignees

No one assigned

    Labels

    type: bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions