RuntimeError: Aborted(OOM). Build with -sASSERTIONS for more info.
ashipiling opened this issue · 2 comments
ashipiling commented
ptosco commented
This is not a bug. You most likely ran OOM because every time you instantiate a molecule, you need to explicitly delete it calling its delete()
method, otherwise you'll be leaking memory.
mol = rdkitModule.get_mol('CCC');
// do something with your mol
// when done, delete it
mol.delete();
ashipiling commented
thanks!