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

IBM Client for Qiskit Runtime

Results 90 qiskit-ibm-runtime issues
Sort by recently updated
recently updated
newest added

**What is the expected feature or enhancement?** NumPy object arrays require special care when encoding/decoding. For example, the following fails: ``` import json import numpy as np from qiskit_ibm_runtime import...

enhancement

**Describe the bug** This fails: ```python qc = qiskit.QuantumCircuit(1) qc.id(0) qc.measure_all() trans_qc = transpile(qc, backend, optimization_level=0) options = { "experimental": { "skip_transpilation": True, }} sampler = SamplerV2(backend=backend, options=options) sampler.run([qc]) ```...

bug

**Describe the bug** A user has noticed a dramatic slowdown in SamplerV2 with FakeSherbrooke: A demo of ~150 4-qubit circuits has gone from taking a few seconds to over 3...

bug

**What is the expected feature or enhancement?** At the moment the API docs for this class are a bit sparse on the details. This issue is to 1) add text...

enhancement

**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](https://quantum-computing.ibm.com/). The new 127 and 133...

enhancement
server action

### What should we add? Dump the running time or outcome of "each shot" in an experiment. The current version of Qiskit seems not to have this feature. A former...

type: feature request

**What is the expected feature or enhancement?** As we prepare for the deprecation of `backend.run()`, one good step is to convert all the test cases to use `SamplerV2`. This would...

enhancement

**Describe the bug** When you retrieve a historical `Target` using `IBMBackend.target_history()`, the calibrations defined in the target are the same as the current ones. **Steps to reproduce** ```python from qiskit_ibm_runtime...

bug

**What is the expected feature or enhancement?** We should support `default_shots` as an EstimatorV2 option in local testing mode. It just needs to be converted to precision (= 1/sqrt(shots)). **Acceptance...

enhancement

That will allow linking Runtime docs to Qiskit docs. To do this, 1. activate `sphinx.ext.intersphinx` in extensions in `conf.py` 2. set up intersphinx like https://github.com/Qiskit/qiskit/blob/adfcf72a60ec3d21dde5cee38393d8f52224f12f/docs/conf.py#L81-L88, but with an entry for...

documentation