0 votes
asked by (130 points)

HI!
I was wondering if it is possible to set ITensor elements Array-wise instead of element-wise, something like:

using ITensors
i = Index(2)
j = Index(2)
k = Index(2)
l = Index(2)

A = randomITensor(i,j,k)
A[i=>1, j=>2, :, :] = [0 0; 0 0]

The use case is that I would like to "diagonalize" a Tensor with (2+n) indices, in the sense that all entries of the Tensor should become zero when the values of the first two indices (which have the same dimensions) are not equal.

I am using Julia v1.5.2 and ITensors v0.1.24.

Thanks for any reply!

1 Answer

+1 vote
answered by (14.1k points)

Hi,

Good question. Unfortunately we don't have very good support right now for slicing ITensors like that. However, in this case you can make use of the NDTensors.jl library, which is a "basic tensor" library that is used by ITensors for basic tensor operations. Here is an example for how to use it:

using ITensors
using ITensors.NDTensors

i = Index(2)
j = Index(2)
k = Index(2)
l = Index(2)

A = randomITensor(i, j, k, l)
tensor(A)[1, 2, :, :] = [0 0; 0 0]

Note that when you index into a Tensor object (which is what you get when you call tensor(A)), it will use the current Index ordering of A, so you will have to be careful about the ordering of the indices. You can print the current Index ordering with @show inds(A).

The ITensor functionality you suggest would be pretty easy to implement, I'm working on it now and I'll add a comment here when it is implemented.

-Matt

commented by (130 points)
Hi Matt

Thanks for the answer, very insightful. I didn't know about this way of indexing, but it does exactly what I was looking for. Is there a way to display the result of such indexing (@show tensor(A)[1, 2, :, :] does throw a MethodError)?
Is there a general rule regarding index ordering of an ITensor (by id e.g.)?

And thanks for right away working on this feature - that's incredible!

Christian
commented by (14.1k points)
edited by
Hi Christian,

If I understand your first question, I think what you are asking is what:

    tensor(A)[1, 2, :, :]

actually returns. In fact, this operation isn't defined right now (just as an oversight on our side), but this similar slicing operation is defined:

    julia> tensor(A)[1, 2, 1:end, 1:end]
    Dim 1: 1
    Dim 2: 1
    Dim 3: 2
    Dim 4: 2
    Dense{Float64,Base.ReshapedArray{Float64,1,SubArray{Float64,4,Array{Float64,4},NTuple{4,UnitRange{Int64}},false},Tuple{Base.MultiplicativeInverses.SignedMultiplicativeInverse{Int64},Base.MultiplicativeInverses.SignedMultiplicativeInverse{Int64},Base.MultiplicativeInverses.SignedMultiplicativeInverse{Int64}}}}
     1×1×2×2
    [:, :, 1, 1] =
     0.0
    
    [:, :, 2, 1] =
     0.0
    
    [:, :, 1, 2] =
     0.0
    
    [:, :, 2, 2] =
     0.0

This looks complicated, but basically it is a view into the specified slice of the Tensor. However, for the operation:

    tensor(A)[1, 2, :, :] = [0 0; 0 0]

it doesn't actually require creating the tensor `tensor(A)[1, 2, :, :]`, since Julia directly turns it into the function call `setindex!(tensor(A), [0 0; 0 0], 1, 2, :, :)` (this is a slightly technical detail about how Julia parses those types of expressions).

As for the Index ordering of an ITensor, at first it is ordered based on how it was defined. Afterward, in general it is ordered in such a way that data permutations are minimized (for example after a contraction). Note that you can permute the ITensor to change the ordering of the ITensor, using the function:

    permute(A, l, i, k, j)

Note that this performs a permutation of the ITensor data as well, so the data matches the new index ordering.

-Matt
commented by (14.1k points)
I've added support for slicing operations here: https://github.com/ITensor/ITensors.jl/pull/535

It will be included in the next version of ITensors.jl (either today or tomorrow).
commented by (130 points)
Awesome! Thanks a lot!
Welcome to ITensor Support Q&A, where you can ask questions and receive answers from other members of the community.

Formatting Tips:
  • To format code, indent by four spaces
  • To format inline LaTeX, surround it by @@ on both sides
  • To format LaTeX on its own line, surround it by $$ above and below
  • For LaTeX, it may be necessary to backslash-escape underscore characters to obtain proper formatting. So for example writing \sum\_i to represent a sum over i.
If you cannot register due to firewall issues (e.g. you cannot see the capcha box) please email Miles Stoudenmire to ask for an account.

To report ITensor bugs, please use the issue tracker.

Categories

...