Skip to content

Commit ffd56e9

Browse files
Fix cutoff bug fourier transform and format
1 parent 1e1e9e6 commit ffd56e9

9 files changed

+46
-53
lines changed

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ FastMPOContractions = "f6e391d2-8ffa-4d7a-98cd-7e70024481ca"
99
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
1010
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
1111
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
12-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1312
QuanticsTCI = "b11687fd-3a1c-4c41-97d0-998ab401d50e"
13+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1414
SparseIR = "4fe2279e-80f0-4adb-8463-ee114ff56b7d"
1515
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1616
TCIITensorConversion = "9f0aa9f4-9415-4e6a-8795-331ebf40aa04"
@@ -40,4 +40,4 @@ ReTestItems = "817f1d60-ba6b-4fd5-9520-3cf149f6a823"
4040
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4141

4242
[targets]
43-
test = ["Test", "Random", "ReTestItems", "Aqua", "PartitionedMPSs"]
43+
test = ["Test", "Random", "ReTestItems", "Aqua"]

ext/QuantiscPartitionedMPSsExt/QuantiscPartitionedMPSsExt.jl

+23-25
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ using ITensorMPS: ITensorMPS, MPS, MPO, AbstractMPS
88
using ITensorMPS: findsite, linkinds, linkind, findsites
99

1010
import Quantics: Quantics, _find_site_allplevs, combinesites, extractdiagonal, _asdiagonal
11-
import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, isprojectedat, project
11+
import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, isprojectedat,
12+
project
1213

1314
function Quantics.makesitediagonal(subdmps::SubDomainMPS, site::Index)
1415
return _makesitediagonal(subdmps, site; baseplev=0)
@@ -18,7 +19,6 @@ function Quantics.makesitediagonal(subdmps::SubDomainMPS, sites::AbstractVector{
1819
return _makesitediagonal(subdmps, sites; baseplev=0)
1920
end
2021

21-
2222
function Quantics.makesitediagonal(subdmps::SubDomainMPS, tag::String)
2323
mps_diagonal = Quantics.makesitediagonal(MPS(subdmps), tag)
2424
subdmps_diagonal = SubDomainMPS(mps_diagonal)
@@ -38,7 +38,7 @@ function Quantics.makesitediagonal(subdmps::SubDomainMPS, tag::String)
3838
end
3939

4040
function _makesitediagonal(
41-
subdmps::SubDomainMPS, sites::AbstractVector{Index{IndsT}}; baseplev=0
41+
subdmps::SubDomainMPS, sites::AbstractVector{Index{IndsT}}; baseplev=0
4242
) where {IndsT}
4343
M_ = deepcopy(MPO(collect(MPS(subdmps))))
4444
for site in sites
@@ -52,9 +52,8 @@ function _makesitediagonal(subdmps::SubDomainMPS, site::Index; baseplev=0)
5252
return _makesitediagonal(subdmps, [site]; baseplev=baseplev)
5353
end
5454

55-
5655
function Quantics.extractdiagonal(
57-
subdmps::SubDomainMPS, sites::AbstractVector{Index{IndsT}}
56+
subdmps::SubDomainMPS, sites::AbstractVector{Index{IndsT}}
5857
) where {IndsT}
5958
tensors = collect(subdmps.data)
6059
for i in eachindex(tensors)
@@ -96,20 +95,17 @@ function Quantics.rearrange_siteinds(partmps::PartitionedMPS, sites)
9695
return PartitionedMPSs.rearrange_siteinds(partmps, sites)
9796
end
9897

99-
10098
"""
10199
Make the PartitionedMPS diagonal for a given site index `s` by introducing a dummy index `s'`.
102100
"""
103101
function Quantics.makesitediagonal(obj::PartitionedMPS, site)
104-
return PartitionedMPS([
105-
_makesitediagonal(prjmps, site; baseplev=baseplev) for prjmps in values(obj)
106-
])
102+
return PartitionedMPS([_makesitediagonal(prjmps, site; baseplev=baseplev)
103+
for prjmps in values(obj)])
107104
end
108105

109106
function _makesitediagonal(obj::PartitionedMPS, site; baseplev=0)
110-
return PartitionedMPS([
111-
_makesitediagonal(prjmps, site; baseplev=baseplev) for prjmps in values(obj)
112-
])
107+
return PartitionedMPS([_makesitediagonal(prjmps, site; baseplev=baseplev)
108+
for prjmps in values(obj)])
113109
end
114110

115111
"""
@@ -120,20 +116,19 @@ function Quantics.extractdiagonal(obj::PartitionedMPS, site)
120116
return PartitionedMPS([extractdiagonal(prjmps, site) for prjmps in values(obj)])
121117
end
122118

123-
124119
"""
125120
By default, elementwise multiplication will be performed.
126121
"""
127122
function Quantics.automul(
128-
M1::PartitionedMPS,
129-
M2::PartitionedMPS;
130-
tag_row::String="",
131-
tag_shared::String="",
132-
tag_col::String="",
133-
alg="naive",
134-
maxdim=typemax(Int),
135-
cutoff=1e-25,
136-
kwargs...,
123+
M1::PartitionedMPS,
124+
M2::PartitionedMPS;
125+
tag_row::String="",
126+
tag_shared::String="",
127+
tag_col::String="",
128+
alg="naive",
129+
maxdim=typemax(Int),
130+
cutoff=1e-25,
131+
kwargs...
137132
)
138133
all(length.(siteinds(M1)) .== 1) || error("M1 should have only 1 site index per site")
139134
all(length.(siteinds(M2)) .== 1) || error("M2 should have only 1 site index per site")
@@ -154,9 +149,11 @@ function Quantics.automul(
154149
sites_M1_diag = [collect(x) for x in siteinds(M1)]
155150
sites_M2_diag = [collect(x) for x in siteinds(M2)]
156151

157-
M1 = Quantics.rearrange_siteinds(M1, combinesites(sites_M1_diag, sites_row, sites_shared))
152+
M1 = Quantics.rearrange_siteinds(
153+
M1, combinesites(sites_M1_diag, sites_row, sites_shared))
158154

159-
M2 = Quantics.rearrange_siteinds(M2, combinesites(sites_M2_diag, sites_shared, sites_col))
155+
M2 = Quantics.rearrange_siteinds(
156+
M2, combinesites(sites_M2_diag, sites_shared, sites_col))
160157

161158
M = PartitionedMPSs.contract(M1, M2; alg=alg, kwargs...)
162159

@@ -177,7 +174,8 @@ function Quantics.automul(
177174
end
178175
end
179176
end
180-
return PartitionedMPSs.truncate(Quantics.rearrange_siteinds(M, ressites); cutoff=cutoff, maxdim=maxdim)
177+
return PartitionedMPSs.truncate(
178+
Quantics.rearrange_siteinds(M, ressites); cutoff=cutoff, maxdim=maxdim)
181179
end
182180

183181
function _findallsiteinds_by_tag(M::PartitionedMPS; tag=tag)

src/fouriertransform.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,12 @@ function _qft(sites; cutoff::Float64=1e-14, sign::Int=1)
2828
R > 1 || error("The number of bits must be greater than 1")
2929

3030
sites_MPO = collect.(zip(prime.(sites), sites))
31-
fouriertt = QuanticsTCI.quanticsfouriermpo(R; sign = Float64(sign), normalize = true)
31+
fouriertt = QuanticsTCI.quanticsfouriermpo(R; sign=Float64(sign), normalize=true)
3232
M = MPO(fouriertt; sites=sites_MPO)
3333

3434
return truncate(M; cutoff)
3535
end
3636

37-
3837
abstract type AbstractFT end
3938

4039
struct FTCore

src/mul.jl

+3-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ function _asdiagonal(t, site::Index{T}; baseplev=0)::ITensor where {T<:Number}
7979
tensor[.., i, i] = rawdata[.., i]
8080
end
8181
return ITensor(
82-
tensor, links..., ITensors.prime(site, baseplev + 1), ITensors.prime(site, baseplev)
82+
tensor, links..., ITensors.prime(site, baseplev + 1), ITensors.prime(
83+
site, baseplev)
8384
)
8485
end
8586

@@ -162,4 +163,4 @@ function automul(M1::MPS, M2::MPS; tag_row::String="", tag_shared::String="",
162163
end
163164

164165
return asMPS(M)
165-
end
166+
end

src/util.jl

+9-16
Original file line numberDiff line numberDiff line change
@@ -364,11 +364,10 @@ function combinesites(M::MPO, site1::Index, site2::Index)
364364
return MPO(tensors)
365365
end
366366

367-
368367
function combinesites(
369-
sites::Vector{Vector{Index{IndsT}}},
370-
site1::AbstractVector{Index{IndsT}},
371-
site2::AbstractVector{Index{IndsT}},
368+
sites::Vector{Vector{Index{IndsT}}},
369+
site1::AbstractVector{Index{IndsT}},
370+
site2::AbstractVector{Index{IndsT}}
372371
) where {IndsT}
373372
length(site1) == length(site2) || error("Length mismatch")
374373
for (s1, s2) in zip(site1, site2)
@@ -378,7 +377,7 @@ function combinesites(
378377
end
379378

380379
function combinesites(
381-
sites::Vector{Vector{Index{IndsT}}}, site1::Index, site2::Index
380+
sites::Vector{Vector{Index{IndsT}}}, site1::Index, site2::Index
382381
) where {IndsT}
383382
sites = deepcopy(sites)
384383
p1 = findfirst(x -> x[1] == site1, sites)
@@ -395,8 +394,6 @@ function combinesites(
395394
return sites
396395
end
397396

398-
399-
400397
function directprod(::Type{T}, sites, indices) where {T}
401398
length(sites) == length(indices) || error("Length mismatch between sites and indices")
402399
any(0 .== indices) && error("indices must be 1-based")
@@ -533,18 +530,14 @@ function makesitediagonal(M::AbstractMPS, tag::String)::MPS
533530
return MPS(collect(M_))
534531
end
535532

536-
537533
# FIXME: may be type unstable
538534
function _find_site_allplevs(tensor::ITensor, site::Index; maxplev=10)
539535
ITensors.plev(site) == 0 || error("Site index must be unprimed.")
540-
return [
541-
ITensors.prime(site, plev) for
542-
plev in 0:maxplev if ITensors.prime(site, plev) ITensors.inds(tensor)
543-
]
536+
return [ITensors.prime(site, plev)
537+
for
538+
plev in 0:maxplev if ITensors.prime(site, plev) ITensors.inds(tensor)]
544539
end
545540

546-
547-
548541
"""
549542
Extract diagonal components
550543
"""
@@ -581,7 +574,7 @@ function _apply(A::MPO, Ψ::MPO; alg::String="fit", cutoff::Real=1e-25, kwargs..
581574
@warn "cutoff is too small for densitymatrix algorithm. Use fit algorithm instead."
582575
end
583576
= replaceprime(
584-
FastMPOContractions.contract_mpo_mpo(A', asMPO(Ψ); alg, kwargs...), 2 => 1)
577+
FastMPOContractions.contract_mpo_mpo(A', asMPO(Ψ); alg, cutoff, kwargs...), 2 => 1)
585578
MPO(collect(AΨ))
586579
end
587580

@@ -592,6 +585,6 @@ function _apply(A::MPO, Ψ::MPS; alg::String="fit", cutoff::Real=1e-25, kwargs..
592585
if alg == "densitymatrix" && cutoff <= 1e-10
593586
@warn "cutoff is too small for densitymatrix algorithm. Use fit algorithm instead."
594587
end
595-
= noprime.(FastMPOContractions.contract_mpo_mpo(A, asMPO(Ψ); alg, kwargs...))
588+
= noprime.(FastMPOContractions.contract_mpo_mpo(A, asMPO(Ψ); alg, cutoff, kwargs...))
596589
MPS(collect(AΨ))
597590
end

test/_util.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ITensorMPS: random_mps
33
using Random
44

55
function _random_mpo(
6-
rng::AbstractRNG, sites::AbstractVector{<:AbstractVector{Index{T}}}; linkdims::Int=1
6+
rng::AbstractRNG, sites::AbstractVector{<:AbstractVector{Index{T}}}; linkdims::Int=1
77
) where {T}
88
sites_ = collect(Iterators.flatten(sites))
99
Ψ = random_mps(rng, sites_; linkdims)
@@ -17,7 +17,7 @@ function _random_mpo(
1717
end
1818

1919
function _random_mpo(
20-
sites::AbstractVector{<:AbstractVector{Index{T}}}; linkdims::Int=1
20+
sites::AbstractVector{<:AbstractVector{Index{T}}}; linkdims::Int=1
2121
) where {T}
2222
return _random_mpo(Random.default_rng(), sites; linkdims)
2323
end

test/fouriertransform_tests.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929

3030
@testset "qft_mpo" for sign in [1, -1], nbit in [2, 3]
3131
N = 2^nbit
32-
32+
3333
sites = siteinds("Qubit", nbit)
3434
M = Quantics._qft(sites; sign=sign)
3535
M_ref = _qft_ref(sites; sign=sign)
36-
36+
3737
@test M M_ref
3838
end
3939
end

test/mul_tests.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ end
120120

121121
@testitem "mul_tests.jl/batchedmatmul" begin
122122
using Test
123-
import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, isprojectedat, project, Projector
123+
import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, isprojectedat,
124+
project, Projector
124125
import Quantics
125126
using ITensors
126127
using ITensors.SiteTypes: siteinds

test/util_tests.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@testitem "util.jl" begin
22
using Test
3-
import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, project, isprojectedat
3+
import PartitionedMPSs: PartitionedMPSs, SubDomainMPS, PartitionedMPS, project,
4+
isprojectedat
45
import Quantics
56
using ITensors
67
using ITensors.SiteTypes: siteinds

0 commit comments

Comments
 (0)