-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Memory requirements for a national run #6
Comments
|
dabreegster
referenced
this issue
in alan-turing-institute/uatk-aspics
Dec 30, 2021
Memory usage didn't actually budge -- still 13.52GiB. But this should certainly help serialized size.
dabreegster
referenced
this issue
in alan-turing-institute/uatk-aspics
Dec 30, 2021
Measuring 18.07 GiB now, which is _up_ from the 13.52 earlier. I... do not trust the memory measurement though.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By reading all of the time-use files, I've counted 42,672,348 people across 21,135,110 households and 6,787 MSOAs. In the current implementation, storing the population takes somewhere between 13 and 18GB, before
flows_per_activity
are filled out! (I got 18GB when the code was still usingHashMap
s everywhere, 13 afterBTreeMap
, but I'll repeat a few times and make sure the memory measurement is consistent.)I have lots of ideas to squeeze this memory usage down, so we can run on a single machine and without paging stuff in and out of memory (which would hopefully simplify things). I'll record ideas in this issue.
The text was updated successfully, but these errors were encountered: