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
Each Boolean value takes 1 byte (but we are using 1 bit of information here).
By using UInt32 and bitmask, we will improve the memory by 8x.
Also, this becomes a bottleneck when users want to create large Pauliframes. For example, with 6GB of RAM given those measurements=2000, I cannot go beyond setting trajectories to 2^20 (and it crashes there sometimes).
The text was updated successfully, but these errors were encountered:
Each Boolean value takes 1 byte (but we are using 1 bit of information here).
By using UInt32 and bitmask, we will improve the memory by 8x.
Also, this becomes a bottleneck when users want to create large Pauliframes. For example, with 6GB of RAM given those measurements=2000, I cannot go beyond setting trajectories to 2^20 (and it crashes there sometimes).
The text was updated successfully, but these errors were encountered: