Kevin J. Sung

Results 133 comments of Kevin J. Sung

The following arguments are present in `transpile` but not `generate_preset_pass_manager` (excluding arguments that are present in `PassManager.run` instead): - `dt` - `ignore_backend_supplied_default_methods` Do we need to add these arguments to...

One suggestion that came up at the dev meeting today is to set a default value for `optimization_level`. We didn't decide what the default value should be.

CI failure seems unrelated.

Ok thanks I'll try that.

>I'm not sure exactly what interface we'd want for this though. Or how you define the boundary between what is negligible impact or not. What do you think of adopting...

In general it's not practical to compute the bound from the gate's unitary since this can be an exponentially large matrix. Even if all the gates act on at most...

I've added some pseudocode to the opening post.

I'm interested in tackling this issue. Can a maintainer confirm that it makes sense, and if so, perhaps offer some guidance on the steps required? I'm new to this repository.

SymbolicOperator stores `(index, action)` pairs. For MajoranaOperator, there is no `action`, so it does not quite map onto the SymbolicOperator class.

The issue is here, where the assumption is made that the circuit contains registers: https://github.com/Qiskit/qiskit-experiments/blob/0ce3f85d7609a81febf745bea84d9d000f8533b4/qiskit_experiments/library/tomography/tomography_experiment.py#L193C27-L195 ```python template = QuantumCircuit( *self._circuit.qregs, *self._circuit.cregs, meas_creg, name=null ) ``` In my repro, `circuit.qregs` is...