Jay Gambetta
Jay Gambetta
I would like to have at the top links to making pull requests, issues, and a link to the GitHub. This is important as when you are the live documentation...
Currently, we do not support a defcal for reset. options add three gates, reset measurement or can we get it all under one defcal
Imagine I want to be able to calibrate two definitions of CX (fast or slow). Currently, it is not clear how this should be done as cx in the defcal...
https://github.com/Qiskit/qiskit-ignis/blob/8f1bdb61f98c003199c808b39df62057ae0fe2bb/qiskit/ignis/verification/tomography/fitters/cvx_fit.py#L281
### What should we add? When I was looking at visualizations for the timeline_drawer and the circuit_drawer it would be good to have both have the same options for the...
This is not needed for the first release but it would be nice to have.
If i run ``` qubits_num = 30 qr = QuantumRegister(qubits_num) cr = ClassicalRegister(qubits_num) qc = QuantumCircuit(qr, cr) qc.h(qr[0]) qc.cx(qr[0], qr[1]) qc.measure(qr[0], cr[0]) qc.measure(qr[1], cr[1]) qc.measure(qr[2], cr[2]) jku_backend = JKUProvider().get_backend('local_statevector_simulator_jku') job...