TCIITensorConversion

Documentation for TCIITensorConversion.

ITensorMPS.MPSMethod
MPS(tt, siteindices...)

Convert a tensor train to an ITensor MPS

  • tt Tensor train
  • siteindices Arrays of ITensor Index objects.

If siteindices is left empty, a default set of indices will be used.

source
TCIITensorConversion.evaluate_mpsMethod
function evaluate_mps(
    mps::Union{ITensorMPS.MPS,ITensorMPS.MPO},
    indices::AbstractVector{<:ITensorMPS.Index},
    indexvalues::AbstractVector{Int}
)

Evaluates an MPS or MPO for a given set of index values.

  • indices is a list of ITensorMPS.Index objects that specifies the order in which indices are given.
  • indexvalues is a list of integer values in the same order as indices.

If many evaluations are necessary, it may be advantageous to convert your MPS to a TensorCrossInterpolation.TTCache object first.

source
TCIITensorConversion.evaluate_mpsMethod
function evaluate_mps(
    mps::Union{ITensorMPS.MPS,ITensorMPS.MPO},
    indexspecs::Vararg{AbstractVector{<:Tuple{ITensorMPS.Index,Int}}}
)

Evaluates an MPS or MPO for a given set of index values.

  • indexspec is a list of tuples, where each tuple contains an ITensorMPS.Index object specifying an index, and an Int corresponding to the value of the specified index.

If many evaluations are necessary, it may be advantageous to convert your MPS to a TensorCrossInterpolation.TTCache object first.

source