-
Notifications
You must be signed in to change notification settings - Fork 4
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
dmrg_x does not support write to disk #25
Comments
I also noticed that there is a similar problem for
The error it reported is: |
Thanks for the report, we'll have to look into that. With our current design of write-to-disk, it is a bit of a game of wack-a-mole to get write-to-disk working for these different solvers that have different caching structures. The basic challenge is coming up with a good design for writing the tensors that aren't needed until later on in the calculation to disk, and then only reading them from disk when they are needed, while only having to rewrite a minimal amount of the solver code. I have a new design in mind based on https://github.com/meggart/DiskArrays.jl, where we actually wrap an @kmp5VT tagging you since wrapping an |
Here is a minimal code:
And here is the output I got, at sweep 3 it should start writing to disk
The issue appears to be associated with
DiskProjMPO(...)
inabstractprojmpo\diskprojmpo.jl
but it's unclear to me how to proceed from there.The text was updated successfully, but these errors were encountered: