Open
Conversation
added 20 commits
April 1, 2024 16:47
…ommented out full expansion.
b-kloss
reviewed
Apr 22, 2024
Draft
mtfishman
reviewed
Apr 26, 2024
src/ITensorNetworks.jl
Outdated
Comment on lines
54
to
55
| #include("solvers/subspace_expansions/linalg/rsvd_aux.jl") | ||
| #include("solvers/subspace_expansions/linalg/rsvd_linalg.jl") |
mtfishman
reviewed
Apr 26, 2024
mtfishman
reviewed
Apr 26, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces a general and flexible subspace expansion interface.
This allows users to perform a 2-site expansion alongside other (typically 1-site) routines, which has better scaling both in the bond dimension and the local Hilbertspace dimension than their 2-site analogs.
The expansion works on general tree structures and can be seamlessly incorporated into existing algorithms by composing and chaining different local updaters via the
compose_updatersfunction.Keyword arguments like
maxdimandcutoffinside ofexpander_kwargscan be used to modify parameters specific to the expansion. Furthermore, a general, randomized svd-routine has been implemented, which can be used for the expansion and allows for the favorable, aforementioned scaling.An example script can be found in the test folder.