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
When running PICO-Infer's testsuite, some heap memory is not released, and after running a while, OOM error will be raised.
This is caused by circular reference and thus GC cannot free this memory.
Noticed that the aliases field indirectly referenced to the last picoinferencechecker instantiated (last testcase).
Commenting out the addAliasedAnnotation use, solves the problem. Don't know why addAliasedAnnotation or addAliasedTypeAnnotation has this wrong behaviour. File an issue to keep track of this bug.
The text was updated successfully, but these errors were encountered:
When running PICO-Infer's testsuite, some heap memory is not released, and after running a while, OOM error will be raised.
This is caused by circular reference and thus GC cannot free this memory.
Noticed that the
aliases
field indirectly referenced to the last picoinferencechecker instantiated (last testcase).Commenting out the
addAliasedAnnotation
use, solves the problem. Don't know whyaddAliasedAnnotation
oraddAliasedTypeAnnotation
has this wrong behaviour. File an issue to keep track of this bug.The text was updated successfully, but these errors were encountered: