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
We do not have a small reproducer, but deep updates in F* are causing a memory blow up.
Two of these patterns are:
a.coefficients[i] += 3
a[i][j] += 3
These are translated into nested updates (which is correct) but chaining two such updates already uses up gigabytes of memory when typechecking with F* and adding more updates cases OOM errors in F*.
The text was updated successfully, but these errors were encountered:
We do not have a small reproducer, but deep updates in F* are causing a memory blow up.
Two of these patterns are:
a.coefficients[i] += 3
a[i][j] += 3
These are translated into nested updates (which is correct) but chaining two such updates already uses up gigabytes of memory when typechecking with F* and adding more updates cases OOM errors in F*.
The text was updated successfully, but these errors were encountered: