-
Notifications
You must be signed in to change notification settings - Fork 12
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
Make sdiag_inv_sqrt
use pseudo-inverse
#78
Changes from all commits
6e1a32f
5c337d8
840cf5a
cd309f7
6ba61dc
2bfcad6
150abeb
6bcb4e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,13 @@ unitcell = (2, 2) | |
H = pwave_superconductor(InfiniteSquare(unitcell...)) | ||
χbond = 2 | ||
χenv = 16 | ||
ctm_alg = CTMRG(; tol=1e-8, maxiter=150, verbosity=2, ctmrgscheme=:sequential) | ||
ctm_alg = CTMRG(; | ||
tol=1e-8, | ||
maxiter=150, | ||
verbosity=2, | ||
ctmrgscheme=:simultaneous, | ||
svd_alg=SVDAdjoint(; rrule_alg=Arnoldi(; tol=1e-9, krylovdim=χenv + 30)), | ||
) | ||
Comment on lines
+13
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. at the risk of sounding like a broken record, I really don't like that we have to change the settings of all algorithms on every single update of the package. We really have to get some better defaults in, because this is not really feasible in the long run. (not something that has to be fixed in this pr) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You definitely have a point in repeating that and I completely agree :-) Actually, for most of the tests we should already be able to replace all settings with the default ones I just haven't gotten around to change them. I just thought that I would wait until we anyway redesign our interface and code up some kind of default parameter selection thing. |
||
opt_alg = PEPSOptimize(; | ||
boundary_alg=ctm_alg, | ||
optimizer=LBFGS(4; maxiter=10, gradtol=1e-3, verbosity=2), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did you re check this after the gaugefixing fixes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay I checked again and the gauge-fixing fixes don't make a difference to the high gauge-sensitivity. I will have to investigate and fix that in a different PR. I just haven't played around that much with fermions yet.
I put back in
nothing
to the test, since I accidentally left that commented out as I was trying around.