-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
760646c
to
08db22b
Compare
We can, but currently that is indeed not the case, also in the implementation. E.g. similar and others call Looking at the docstring of
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. |
Interestingly, when looking at I addressed the other comments, do you think this is ready to go? |
`TensorMap{E}(undef, codomain, domain)`
60e360d
to
d55bf04
Compare
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:
While they can also be constructed from actual data:
For convenience, the following functions are also supported:
rand
,randn
,ones
,zeros
Finally, it is still possible to change the storagetype
A
, which does however require the fully specified type:A similar approach is adopted for
isomorphism
,id
,unitary
andisometry
:a couple questions:
HomSpace
, and reflect this as much as possible in the docstrings and documentation?Any feedback definitely appreciated.