-
Notifications
You must be signed in to change notification settings - Fork 15
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
Why does interactive LAMMPS become slower? #481
Comments
Probably the best way to find out is to run the for loop under |
I just made sure that it doesn't happen with |
I did a quick profile and roughly ~45% of the time is spent in
I suppose it makes sense, as the cache gets longer during the calculation, more list -> array conversions are done. Another ~15% are talking to the database, the rest is writing/reading HDF files. |
AAAAAAHA! So it means there could be a huge gain by making it more efficient. |
I just realised that interactive LAMMPS gets slower and slower. For this, I created the following short example:
And I observed the following evolution of time (of course I plotted
np.diff(t_lst)
and nott_lst
). Why does interactive LAMMPS get slower and slower?The text was updated successfully, but these errors were encountered: