Jake Lishman
Jake Lishman
Luciano: I don't think it's necessarily the best idea to treat a particular preset-configuration function as if it's a class. Qiskit's presets might be commonly used, but making them the...
fwiw, the new failure looks like this: ```python In [1]: from qiskit.utils import optionals ...: ...: with optionals.HAS_GRAPHVIZ.disable_locally(): ...: optionals.HAS_GRAPHVIZ.require_now("test") ...: --------------------------------------------------------------------------- MissingOptionalLibraryError Traceback (most recent call last) Cell In[1],...
I think a `from_instruction` constructor for all the Pauli-like operators in `quantum_info` is a fine direction to go, and in line with other things we have there. All existing `from_instruction`-type...
Actually, having just written that, two more thoughts: - `Pauli.from_instruction` and `SparsePauliOp.from_instruction` already actually exist in spirit, it's just embedded in the default constructor. You can do `Pauli(QuantumCircuit)` or `Pauli(Instruction)`...
In what situations are you expecting to have a parametric `Instruction` object that can be converted to `SparsePauliOp`? The `Clifford` methods have some ways of checking if a value for...
Sorry this didn't have much of a response. To link to other threads of work that we have going on, we're going to be implementing #12282 as part of our...
Fwiw, at the ~100-qubit scale, I think the memory savings of a fully qubit-sparse operator vs a bitpacked _full_ symplectic representation of the Pauli terms (i.e. just `SparsePauliOp`, but bitpacked...
From #11835: sorting out which branches of release notes we build into particular version docs builds (and hence get synced to docs.quantum.ibm.com) is something we'll probably need to think about...
Just for visibility: this is a big feature request and we're talking about prioritisation / team availability and the design-space way forwards internally first. There's a lot of overlap with...
> Perhaps having a separate transpile function [and pass manager, etc] This is potentially possible yeah, and one way we could go about things. I think the decision here will...