Skip to content

Commit

Permalink
Updated changelog [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
micheles committed Jan 29, 2024
1 parent 3e1252b commit c561b88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[Michele Simionato]
* Reduced memory consumption in multiFaultSources
* Implemented batch processing for AELO calculations

[Anirudh Rao]
* Improved the performance of non-parametric liquefaction models

Expand Down
3 changes: 3 additions & 0 deletions openquake/baselib/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -1378,6 +1378,9 @@ def getsizeof(o, ids=None):
if id(o) in ids:
return 0

if hasattr(o, 'nbytes'):
return o.nbytes

nbytes = sys.getsizeof(o)
ids.add(id(o))

Expand Down

0 comments on commit c561b88

Please sign in to comment.