Skip to content
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

Generic Boundary Matrix Product States Contraction Code #212

Open
wants to merge 53 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
c845947
Blah
JoeyT1994 Sep 13, 2024
90c7251
Merge remote-tracking branch 'origin/main'
JoeyT1994 Oct 17, 2024
86f3087
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Oct 17, 2024
6ff0cd5
Bug fix in current ortho. Change test
JoeyT1994 Oct 17, 2024
34e8e5e
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Nov 22, 2024
d096722
Fix bug
JoeyT1994 Nov 26, 2024
70a3f7e
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Dec 5, 2024
921810d
Save First Run
JoeyT1994 Dec 18, 2024
c1c1f94
Preliminary ideas
JoeyT1994 Dec 18, 2024
c7ab747
Save
JoeyT1994 Dec 19, 2024
6f9dc32
First commit
JoeyT1994 Dec 19, 2024
08f574a
Sequence sorting
JoeyT1994 Dec 19, 2024
63b18ee
Test change
JoeyT1994 Dec 19, 2024
008b981
Stuff
JoeyT1994 Dec 26, 2024
4febcc3
Gauging
JoeyT1994 Dec 26, 2024
50c53d7
Workinggit add examples/test_boundarymps.jl
JoeyT1994 Dec 27, 2024
9b9b05d
Missing edges
JoeyT1994 Dec 28, 2024
a8c04d3
Simplify
JoeyT1994 Dec 29, 2024
d8ce9cb
Code clean
JoeyT1994 Dec 29, 2024
d095c6f
Improved nomenclature
JoeyT1994 Dec 30, 2024
6e8d7b8
Adding biorthogonalization feature
JoeyT1994 Dec 30, 2024
2ca6404
Biorthogonal algorithm
JoeyT1994 Dec 31, 2024
05ae49a
File Structure
JoeyT1994 Dec 31, 2024
9c5f6c4
Utils
JoeyT1994 Dec 31, 2024
12722da
Add test
JoeyT1994 Dec 31, 2024
f7c6beb
More tests
JoeyT1994 Jan 1, 2025
7d4465b
Testing
JoeyT1994 Jan 1, 2025
1b23fbb
Working Commit
JoeyT1994 Jan 2, 2025
338a41f
BoundaryMPS
JoeyT1994 Jan 2, 2025
62c87b4
Merge branch 'BoundaryMPS' of github.com:JoeyT1994/ITensorNetworks.jl…
JoeyT1994 Jan 2, 2025
9d64029
Revert BP Cache Code
JoeyT1994 Jan 2, 2025
dc46339
Rename kwarg
JoeyT1994 Jan 2, 2025
dd22863
examples/test_boundarymps.jl
JoeyT1994 Jan 2, 2025
807739f
Updated tests
JoeyT1994 Jan 2, 2025
ee078e5
Formatting
JoeyT1994 Jan 2, 2025
a028422
AbstractCache
JoeyT1994 Jan 2, 2025
81dcea4
Revert "AbstractCache"
JoeyT1994 Jan 2, 2025
5dc9677
Abstract Cahce
JoeyT1994 Jan 2, 2025
611bf18
Working Abstract Cache
JoeyT1994 Jan 2, 2025
6c7a2a8
Simplify initialization of messges
JoeyT1994 Jan 3, 2025
531c5af
Rm redundant file
JoeyT1994 Jan 3, 2025
93d905f
Merge branch 'AbstractCache' into BoundaryMPS
JoeyT1994 Jan 3, 2025
b11c2f8
Bug fix in test_apply
JoeyT1994 Jan 3, 2025
99b4929
Generic update interface for boundary mps and simple bp
JoeyT1994 Jan 8, 2025
19630aa
Unify update function
JoeyT1994 Jan 9, 2025
35fe94f
Generic naming support
JoeyT1994 Jan 10, 2025
4ae3b53
Updated expect, inner and environment interfaces
JoeyT1994 Jan 10, 2025
df7a4c5
Fix failing tests
JoeyT1994 Jan 10, 2025
e9e0336
Two site working
JoeyT1994 Jan 13, 2025
e98a056
Cleanup
JoeyT1994 Jan 14, 2025
5b9266e
Remove @show
JoeyT1994 Jan 15, 2025
0228aa1
Fix Bug in Expect
JoeyT1994 Jan 16, 2025
1fcf947
Fix expect test
JoeyT1994 Jan 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove @show
JoeyT1994 committed Jan 15, 2025
commit 5b9266e83c401c6788819012d91cee257661d215
1 change: 0 additions & 1 deletion src/caches/boundarympscache.jl
Original file line number Diff line number Diff line change
@@ -590,7 +590,6 @@ function update(
cf += !isnothing(tolerance) ? costfunction(alg, bmpsc, update_pe_region) : 0.0
end
epsilon = abs(cf - prev_cf) / length(update_seq)
@show cf
if !isnothing(tolerance) && epsilon < tolerance
return cache_prep_function(alg, bmpsc, partitionpair)
else