I already used the code before and it worked in the past. But for some reason, it failed and stopped running without writing an error every time since then (I didn't change the code).
Please let me know what went wrong.
Regards
Matan
Dylan Nelson
20 May '22
Hello,
I suspect this is just hitting the memory limit and being killed on the Lab. To confirm, you can run against TNG50-4 instead. If that works fine, you have two options:
(1) download the data to your own system and run the calculation there
(2) change the method to not load all the data at once, but to load it in pieces (i.e. "chunks"). For a 2D histogram there is no need to have all the data in memory at once.
Dear Dylan
I have some issues with the following code:
I already used the code before and it worked in the past. But for some reason, it failed and stopped running without writing an error every time since then (I didn't change the code).
Please let me know what went wrong.
Regards
Matan
Hello,
I suspect this is just hitting the memory limit and being killed on the Lab. To confirm, you can run against TNG50-4 instead. If that works fine, you have two options:
(1) download the data to your own system and run the calculation there
(2) change the method to not load all the data at once, but to load it in pieces (i.e. "chunks"). For a 2D histogram there is no need to have all the data in memory at once.
Thank you very much!