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
Most parallel processing frameworks require us to pickle things, like the database. Currently I get "TypeError: can't pickle instancemethod objects" when I try.
The text was updated successfully, but these errors were encountered:
It looks like we may just need to add a few __reduce__() methods to some of the database classes to help pickle understand how to handle them. I have managed to pickle the thermo database after doing this (it didn't work before), and am working on the kinetics and frequencies databases.
Hmm - so storing it pickled wouldn't save us much.
@faribas this explains why our parallel implementation which requires pickling and unpickling the entire database for every edge species is kind of slow! (don't worry - we have a better idea...)
Most parallel processing frameworks require us to pickle things, like the database. Currently I get "TypeError: can't pickle instancemethod objects" when I try.
The text was updated successfully, but these errors were encountered: