We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This bug was filed against version 0.16
The following SDK code:
q = Qubit(context.connection) epr = context.epr_sockets[0].create_keep()[0] q.cnot(epr) q.H() m2 = epr.measure() m1 = q.measure() context.connection.flush()
Produces roughly the following pseudo-code:
Initialise storage qubit Entangle ...Transpiled CNOT... ...Transpiled H... Measure communication qubit Measure storage qubit
But as per
netqasm/netqasm/sdk/builder.py
Lines 1127 to 1128 in c1d57f9
Interestingly, swapping the order of measurement between epr and q then produces code that tries to move the epr to a storage qubit.
epr
q
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This bug was filed against version 0.16
The following SDK code:
Produces roughly the following pseudo-code:
But as per
netqasm/netqasm/sdk/builder.py
Lines 1127 to 1128 in c1d57f9
Interestingly, swapping the order of measurement between
epr
andq
then produces code that tries to move theepr
to a storage qubit.The text was updated successfully, but these errors were encountered: