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
atoMEC uses the joblib library for a simple parallelization over spin and l quantum numbers when diagonalizing the Hamiltonian. It is recommended in joblib to dump large arrays to a file which is then deleted after.
Currently in atoMEC this writing to file does not work when multiple simulations are performed simultaneously from the same directory (i.e. quite likely on on HPC), because the data file for a given run is overwritten by the data file for another run.
Simple fix will be just to randomize the name of the data file.
The text was updated successfully, but these errors were encountered:
atoMEC uses the
joblib
library for a simple parallelization over spin andl
quantum numbers when diagonalizing the Hamiltonian. It is recommended in joblib to dump large arrays to a file which is then deleted after.Currently in atoMEC this writing to file does not work when multiple simulations are performed simultaneously from the same directory (i.e. quite likely on on HPC), because the data file for a given run is overwritten by the data file for another run.
Simple fix will be just to randomize the name of the data file.
The text was updated successfully, but these errors were encountered: