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
These lines still uses max_total_memory as a hard limit for MMTk, while Julia treats max_total_memory as a soft limit. So we may still see MMTk OOM. We should simply use usize::MAX in those lines.
The text was updated successfully, but these errors were encountered:
mmtk-julia/mmtk/src/gc_trigger.rs
Lines 263 to 267 in 4a348c0
mmtk-julia/mmtk/src/gc_trigger.rs
Lines 274 to 277 in 4a348c0
These lines still uses
max_total_memory
as a hard limit for MMTk, while Julia treatsmax_total_memory
as a soft limit. So we may still see MMTk OOM. We should simply useusize::MAX
in those lines.The text was updated successfully, but these errors were encountered: