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

Refactor TensorMap constructors #6

Merged
merged 29 commits into from
Jun 7, 2024
Merged

Refactor TensorMap constructors #6

merged 29 commits into from
Jun 7, 2024

Conversation

lkdvos
Copy link

@lkdvos lkdvos commented May 8, 2024

This PR is a refactor of the TensorMap constructors, which brings them more in line with the Array counterparts.

In particular, the default way of constructing uninitialized tensormap should now be:

TensorMap{E}(undef, codomain  domain)
TensorMap{E}(undef, codomain, domain)
Tensor{E}(undef, space)

While they can also be constructed from actual data:

TensorMap(data, codomain  domain)
TensorMap(data, codomain, domain)

For convenience, the following functions are also supported: rand, randn, ones, zeros

rand([T], codomain  domain))
rand([T}, codomain, domain)
rand([T], codomain)

Finally, it is still possible to change the storagetype A, which does however require the fully specified type:

TensorMap{E,S,N1,N2,I,A,F1,F2}(undef, codomain, domain)
tensormaptype(S,N1,N2,EorA)(undef, codomain, domain) # equivalent

A similar approach is adopted for isomorphism, id, unitary and isometry:

isomorphism([TorA::Type=Float64,] codomain::TensorSpace, domain::TensorSpace) -> TensorMap
isomorphism([TorA::Type=Float64,] codomain  domain) -> TensorMap

a couple questions:

  • Should we try and make the default way of dealing with tensors via HomSpace, and reflect this as much as possible in the docstrings and documentation?
  • There is a slight difference between constructing a tensormap with initialized blocks, where the blocks have uninitialized data, or a tensormap with uninitialized blocks. In principle, having this second option could be convenient, for example in the implementations of qr and svd, where LinearAlgebra already generates blocks.

Any feedback definitely appreciated.

@lkdvos lkdvos requested a review from Jutho May 8, 2024 13:34
@lkdvos lkdvos force-pushed the ld-tensormap-constructors branch from 760646c to 08db22b Compare May 10, 2024 12:24
@Jutho
Copy link

Jutho commented May 25, 2024

  • Should we try and make the default way of dealing with tensors via HomSpace, and reflect this as much as possible in the docstrings and documentation?

We can, but currently that is indeed not the case, also in the implementation. E.g. similar and others call tensormaptype(...)(undef, codomain, domain). I guess that typing a comma is easier than typing a left pointing arrow with \leftarrow.

Looking at the docstring of Matrix{T}, it seems that only Matrix{T}(undef, m, n) is mentioned, even though Matrix{T}(undef, (m, n)) definitely works.

  • There is a slight difference between constructing a tensormap with initialized blocks, where the blocks have uninitialized data, or a tensormap with uninitialized blocks. In principle, having this second option could be convenient, for example in the implementations of qr and svd, where LinearAlgebra already generates blocks.

Having uninitialized blocks seems like a very fragile state, that we do not want to expose to the user. Probably there are better solutions requiring less copies/allocations to fill the blocks in the case of factorisations.

@lkdvos
Copy link
Author

lkdvos commented May 26, 2024

Looking at the docstring of Matrix{T}, it seems that only Matrix{T}(undef, m, n) is mentioned, even though Matrix{T}(undef, (m, n)) definitely works.

Interestingly, when looking at Array{T}, the opposite is true, and only Array{T}(undef, dims) is mentioned, while the other cases also definitely work. In any case, it seems like zeros and similar mention both options so let's just keep them both as well.


I addressed the other comments, do you think this is ready to go?

@lkdvos lkdvos force-pushed the ld-tensormap-constructors branch from 60e360d to d55bf04 Compare May 26, 2024 18:51
@lkdvos lkdvos merged commit 332c70c into v1 Jun 7, 2024
11 checks passed
@lkdvos lkdvos deleted the ld-tensormap-constructors branch June 7, 2024 06:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants