merav-aharoni
merav-aharoni
Best to review this after #1897 is merged, because the changes here include those. @doichanj - the main question here is for you, whether you want to include the MKL...
Assuming the branch `https://github.com/Qiskit/qiskit-experiments/tree/feature/rb_speedup` is merged before this PR, note two things: 1. The methods `CliffordUtils::random_clifford_circuits` and `CliffordUtils::random_cliffords` will be deprecated. Use `StandardRB::__sample_sequence` instead. 2. Consider whether using the mapping...
I tried to build a small test case similar to yours, using `Estimator`, with a `reset` but did not get a failure. I couldn't use your circuit because it doesn't...
I see now that it fails when running on a real device. On the simulator it passes. I will investigate further.
The problem appears to be in `qiskit_ibm_primitives`. I will open an issue there.
I've been looking at adding `noise_model` and `seed_simulator` to the `IBMBackend` cot'r. This doesn't really make sense, because no one is supposed to directly call this cot'r. The `IBMProvider` only...
In `qiskit-terra`, `ProviderV1` uses `get_backend()` rather than `backend()`. `JobV1` uses `backend()`. So I guess that for `QiskitRuntimeService` we should actually use `get_backend()`, and remove the method `backend() (deprecate first). @kt474...
@kt474 - deprecated code for which versions can be removed?
I looked at the deprecation message in session.py: ``` if "backend" in options: issue_deprecation_msg( "'backend' is no longer a supported option within a session", "0.9", "Instead, specify a backend when...
`job.job_id` is defined in Terra as an attribute. `job.session_id` is defined in `qiskit_ibm_runtime` as a property. I think they should both be properties. However, we will not make changes in...