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
A straightforward attempt doesn't pass the compiler because each thread needs to have mutable references to two rows of the array being modified. We know that no two threads will have access to the same rows, but the compiler can't tell.
The text was updated successfully, but these errors were encountered:
This loop here:
ffsim/src/gates/orbital_rotation.rs
Line 45 in 1e55524
A straightforward attempt doesn't pass the compiler because each thread needs to have mutable references to two rows of the array being modified. We know that no two threads will have access to the same rows, but the compiler can't tell.
The text was updated successfully, but these errors were encountered: