We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this code snippet:
resdata/python/resdata/resfile/rd_file.py
Lines 404 to 412 in 4f0df4d
the entire contents of the UNRST file is loaded into memory.
On sufficiently big UNRST files, this will lead to an out-of-memory situation.
This bug is responsible for equinor/subscript#755
The text was updated successfully, but these errors were encountered:
This can be seen by stepping through the code and checking that the kw object contains data for each cell in the model.
kw
Seemingly garbage collection is insufficient to purge the loaded data for each loop invocation.
Sorry, something went wrong.
res2df has been ported to use resfo instead of this code, thus working around this limitation.
berland
No branches or pull requests
In this code snippet:
resdata/python/resdata/resfile/rd_file.py
Lines 404 to 412 in 4f0df4d
the entire contents of the UNRST file is loaded into memory.
On sufficiently big UNRST files, this will lead to an out-of-memory situation.
This bug is responsible for equinor/subscript#755
The text was updated successfully, but these errors were encountered: