-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebase master, rename & add some multiplication methods
- Loading branch information
Showing
6 changed files
with
200 additions
and
59 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
""" | ||
LazyKet(b, kets) | ||
Lazy implementation of a tensor product of kets. | ||
The subkets are stored in the `kets` field. | ||
The main purpose of such a ket are simple computations for large product states, such as expectation values. | ||
It's used to compute numeric initial states in QuantumCumulants.jl (see QuantumCumulants.initial_values). | ||
""" | ||
mutable struct LazyKet{B,T} <: AbstractKet{B,T} | ||
basis::B | ||
kets::T | ||
function LazyKet(b::B, kets::T) where {B<:CompositeBasis,T<:Tuple} | ||
N = length(b.bases) | ||
for n=1:N | ||
@assert isa(kets[n], Ket) | ||
@assert kets[n].basis == b.bases[n] # | ||
end | ||
new{B,T}(b, kets) | ||
end | ||
end | ||
function LazyKet(b::CompositeBasis, kets::Vector) | ||
return LazyKet(b,Tuple(kets)) | ||
end | ||
|
||
Base.eltype(ket::LazyKet) = Base.promote_type(eltype.(ket.kets)...) | ||
|
||
Base.isequal(x::LazyKet, y::LazyKet) = isequal(x.basis, y.basis) && isequal(x.kets, y.kets) | ||
Base.:(==)(x::LazyKet, y::LazyKet) = (x.basis == y.basis) && (x.kets == y.kets) | ||
|
||
# conversion to dense | ||
Ket(ket::LazyKet) = ⊗(ket.kets...) | ||
|
||
# no lazy bras for now | ||
dagger(x::LazyKet) = throw(MethodError("dagger not implemented for LazyKet: LazyBra is currently not implemented at all!")) | ||
|
||
# tensor with other kets | ||
function tensor(x::LazyKet, y::Ket) | ||
return LazyKet(x.basis ⊗ y.basis, (x.kets..., y)) | ||
end | ||
function tensor(x::Ket, y::LazyKet) | ||
return LazyKet(x.basis ⊗ y.basis, (x, y.kets...)) | ||
end | ||
function tensor(x::LazyKet, y::LazyKet) | ||
return LazyKet(x.basis ⊗ y.basis, (x.kets..., y.kets...)) | ||
end | ||
|
||
# norms | ||
norm(state::LazyKet) = prod(norm.(state.kets)) | ||
function normalize!(state::LazyKet) | ||
for ket in state.kets | ||
normalize!(ket) | ||
end | ||
return state | ||
end | ||
function normalize(state::LazyKet) | ||
y = deepcopy(state) | ||
normalize!(y) | ||
return y | ||
end | ||
|
||
# expect | ||
function expect(op::LazyTensor{B, B}, state::LazyKet{B}) where B <: Basis | ||
check_samebases(op); check_samebases(op.basis_l, state.basis) | ||
ops = op.operators | ||
inds = op.indices | ||
kets = state.kets | ||
|
||
T = promote_type(eltype(op), eltype(state)) | ||
exp_val = convert(T, op.factor) | ||
for i in 1:length(kets) | ||
if i ∈ inds | ||
exp_val *= expect(ops[i], kets[i]) | ||
else | ||
exp_val *= dot(kets[i], kets[i]) | ||
end | ||
end | ||
|
||
return exp_val | ||
end | ||
|
||
function expect(op::LazyProduct{B,B}, state::LazyKet{B}) where B <: Basis | ||
check_samebases(op); check_samebases(op.basis_l, state.basis) | ||
|
||
tmp_state1 = deepcopy(state) | ||
tmp_state2 = deepcopy(state) | ||
for i = length(op.operators):-1:1 | ||
mul!(tmp_state2, op.operators[i], tmp_state1) | ||
for j = 1:length(state.kets) | ||
copyto!(tmp_state1.kets[j].data, tmp_state2.kets[j].data) | ||
end | ||
end | ||
|
||
T = promote_type(eltype(op), eltype(state)) | ||
exp_val = convert(T, op.factor) | ||
for i = 1:length(state.kets) | ||
exp_val *= dot(state.kets[i].data, tmp_state2.kets[i].data) | ||
end | ||
|
||
return exp_val | ||
end | ||
|
||
function expect(op::LazySum{B,B}, state::LazyKet{B}) where B <: Basis | ||
check_samebases(op); check_samebases(op.basis_l, state.basis) | ||
|
||
T = promote_type(eltype(op), eltype(state)) | ||
exp_val = zero(T) | ||
for (factor, sub_op) in zip(op.factors, op.operators) | ||
exp_val += factor * expect(sub_op, state) | ||
end | ||
|
||
return exp_val | ||
end | ||
|
||
|
||
# mul! with lazytensor -- needed to compute lazyproduct averages (since ⟨op1 * op2⟩ doesn't factorize) | ||
# this mul! is the only one that really makes sense | ||
function mul!(y::LazyKet{BL}, op::LazyOperator{BL,BR}, x::LazyKet{BR}) where {BL, BR} | ||
T = promote_type(eltype(y), eltype(op), eltype(x)) | ||
mul!(y, op, x, one(T), zero(T)) | ||
end | ||
function mul!(y::LazyKet{BL}, op::LazyTensor{BL, BR}, x::LazyKet{BR}, alpha, beta) where {BL, BR} | ||
iszero(beta) || throw("Error: cannot perform muladd operation on LazyKets since addition is not implemented. Convert them to dense kets using Ket(x) in order to perform muladd operations.") | ||
|
||
iszero(alpha) && (_zero_op_mul!(y.kets[1].data, beta); return result) | ||
|
||
missing_index_allowed = samebases(op) | ||
(length(y.basis.bases) == length(x.basis.bases)) || throw(IncompatibleBases()) | ||
|
||
for i in 1:length(y.kets) | ||
if i ∈ op.indices | ||
mul!(y.kets[i], op.operators[i], x.kets[i]) | ||
else | ||
missing_index_allowed || throw("Can't multiply a LazyOperator with a Ket when there's missing indices and the bases are different. | ||
A missing index is equivalent to applying an identity operator, but that's not possible when mapping from one basis to another!") | ||
|
||
copyto!(y.kets[i].data, x.kets[i].data) | ||
end | ||
end | ||
|
||
rmul!(y.kets[1].data, op.factor * alpha) | ||
return y | ||
end |
This file contains 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
This file contains 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