Paul Nation

Results 110 comments of Paul Nation
trafficstars

Is there any update on whether or not the solutions provided here work?

Yeah but then I need yet another package to get the bib file that I actually need. I also do not think that a single one of these would be...

I think that makes sense. I do agree that this is low-hanging fruit. I think where it is added depends on what is the proposed "default" preset passmanger. Namely, other...

```python from qiskit import * from qiskit_aer.primitives import Sampler sampler = Sampler() qc = QuantumCircuit(100, 2) qc.h(98) qc.cx(98, 99) qc.measure([98, 99], [0, 1]) sampler.run(qc).result() ```

It is not fixed in Aer 0.14.1: ![image](https://github.com/Qiskit/qiskit-aer/assets/1249193/372cc5e9-fc27-43b1-9c7e-1bad780d4d48)

Is there an update on this? This should be done ASAP as it easily leads to breaking code.

So the above example is a trimmed down version from @jyu00 that uses the `random_circuit` functionality in Qiskit ```python qc = random_circuit(num_qubits+1, depth=2) qc.measure_all() ``` The issue is indeed that...

Update: Setting `method='statevector'` finally failed with a memory exception, but it took ~10 minutes to do so.

But can we agree on register names not changing at least? Especially since retrieving results now requires knowing the names.