qiskit-ibm-runtime icon indicating copy to clipboard operation
qiskit-ibm-runtime copied to clipboard

Add EPLG to backend configuration

Open conradhaupt opened this issue 8 months ago • 1 comments

What is the expected feature or enhancement?

Currently backend.configuration() will return the measured quantum volume and CLOPS for a device, if it exists on quantum-computing.ibm.com. The new 127 and 133 qubits devices also report the newer EPLG metri, but this is not currently reported in backend.configuration(). This enhancement would be to include EPLG in backend.configuration() for, at least, the new >100 qubits devices; where it is available.

Acceptance criteria

The following code, or equivalent, should return the EPLG value displayed on https://quantum-computing.ibm.com:

service = QiskitRuntimeService()
backend = service.get_backend("ibm_sherbrooke")

eplg = backend.configuration().eplg
print("EPLG for {} is {}".format(backend.name, eplg)

conradhaupt avatar Dec 04 '23 10:12 conradhaupt