You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Describe the bug
Under Jupyter, when 8 or more Qubits used, DumpMachine sometimes outputs 8-bit row labels, sometimes 16-bit labels.
To Reproduce
Run these two cells under Jupyter:
open Microsoft.Quantum.Canon;
open Microsoft.Quantum.Intrinsic;
open Microsoft.Quantum.Diagnostics;
operation TestDump(n:Int) : Unit
{
use qs = Qubit[n];
for i in 0..n-1 {
H(qs[i]); // put all bits into equal superposition.
}
DumpMachine();
ResetAll(qs);
}