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

[ITensors] Better prime and tag defaults for polar and qr #525

Open
mtfishman opened this issue Nov 15, 2020 · 0 comments
Open

[ITensors] Better prime and tag defaults for polar and qr #525

mtfishman opened this issue Nov 15, 2020 · 0 comments
Assignees
Labels
api Issues related to the interface breaking This would require a breaking change bug Something isn't working decompositions Issues related to tensor decompositions.
Milestone

Comments

@mtfishman
Copy link
Member

The functions polar and qr don't have great tag and prime defaults, for example:

l = Index(3, "l")
s = Index(2, "s")
A = randomITensor(l', s, l)


Q, R = qr(A, (l', s))
@show inds(Q)
@show inds(R)

gives:

inds(Q) = IndexSet{3} (dim=3|id=902|"l")' (dim=2|id=226|"s") (dim=3|id=728|"Link,qr")
inds(R) = IndexSet{2} (dim=3|id=728|"Link,qr") (dim=3|id=902|"l")

and

U, P = polar(A, (l', s))
@show inds(U)
@show inds(P)

gives:

inds(U) = IndexSet{3} (dim=3|id=902|"l")' (dim=2|id=226|"s") (dim=3|id=902|"l")' 
inds(P) = IndexSet{2} (dim=3|id=902|"l")' (dim=3|id=902|"l") 

For polar, the tricky part is that the new Index must be made so that it doesn't clash with any of the existing indices. However, in general it has the same space as the right set of indices, so right now it is set to have the same ID. It may be too difficult in general to ensure it has a unique set of indices, so it may be best to give it a unique ID (we could give it a special set of tags, but I am hesitant to do that since if you add on tags, an index may run out of tag slots).

@mtfishman mtfishman self-assigned this Nov 18, 2020
@mtfishman mtfishman added api Issues related to the interface bug Something isn't working decompositions Issues related to tensor decompositions. labels Nov 18, 2020
@mtfishman mtfishman added this to the v0.1 milestone Nov 18, 2020
@mtfishman mtfishman added the breaking This would require a breaking change label May 19, 2021
@mtfishman mtfishman mentioned this issue May 19, 2021
7 tasks
@mtfishman mtfishman changed the title Better prime and tag defaults for polar and qr [ITensors] Better prime and tag defaults for polar and qr Apr 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api Issues related to the interface breaking This would require a breaking change bug Something isn't working decompositions Issues related to tensor decompositions.
Projects
None yet
Development

No branches or pull requests

1 participant