-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve error message for mismatching unit ids when adding conditional gates #1580
Comments
This issue has been automatically marked as stale. |
This error is thrown by pybind. In order for us to change the error message, we would have to take manual control away from pybind for handling this. I messed around last year with only ever exposing e.g. pybind11 does offer the option of doing the type inference in the C++ binders, so it might be possible to do the same "taking over the inference role to only expose a single method" trick without adding a new layer for us to maintain. Still a lot of work, and we might not have fine-grained control over the type annotations in the docs/mypy (though we would still benefit from complete control over docstrings which would help), but at least this is something that can be done much more incrementally. Maybe we can try building an example of this and assess how scalable it is. I'll have a crack at that this week and report back. |
Thanks Will Here's another example where the error message is not so clear from pytket import Bit, Qubit
from pytket.circuit import CircBox, Circuit
from pytket.circuit.logic_exp import reg_eq
box = CircBox(Circuit(2, name="C").H(0).CX(0, 1))
outer_circ = Circuit(4, 2).H(0).CX(0, 1).Measure(0, 0).Measure(1, 1)
c_reg = outer_circ.get_c_register("c")
outer_circ.add_circbox(circbox=box,
args=[Qubit(2), Qubit(3)],
condition_bits=[Bit(0), Bit(1)],
condition_value=reg_eq(c_reg, 1)) Here's the error
In this case the fix is to use the |
The following method works fine for adding a condtional-X gate to a
Circuit
.Notice how I am passing the
Qubit
q[0]
into theCircuit.add_gate
method.However if I replace
q[0]
with0
....I get the following
RuntimeError
Its not at all obvoius from this error what has gone wrong here. This error message should make the fix clearer.
In fact, arguably this shouldn't give an error in pytket as in the current interface we support referencing qubits with
Qubit
s and integers. However not sure how practical overload merging would be.The text was updated successfully, but these errors were encountered: