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

ITensor, Tensor, and Array conversion API #374

Open
mtfishman opened this issue May 19, 2020 · 2 comments
Open

ITensor, Tensor, and Array conversion API #374

mtfishman opened this issue May 19, 2020 · 2 comments
Assignees
Labels
api Issues related to the interface enhancement New feature or request NDTensors Requires changes to the NDTensors.jl library.
Milestone

Comments

@mtfishman
Copy link
Member

The Array conversion interface is a bit inconsistent right now. There is the following for trying to avoid copying, which takes the Index ordering as the memory ordering:

  • array(::ITensor)

And these where you have to specify the index ordering:

  • Array{ElT,N}(::ITensor, ::Index...)
  • Array{ElT}(::ITensor, ::Index...)
  • Array(::ITensor, ::Index...)

And then some where Matrix and Vector can be used explcitly:

  • Matrix{ElT}(::ITensor{2}, ::Index, ::Index)
  • Matrix(::ITensor{2}, ::Index, ::Index)
  • Vector(::ITensor{1}, ::Index)
  • Vector{ElT}(::ITensor{1}, ::Index)
  • Vector(::ITensor{1})
  • Vector{ElT}(::ITensor{1})

Functions to add would be:

  • matrix and vector
  • Versions of Array and Matrix where the indices don't have to be specified.
  • Versions of array, matrix, and vector where the index ordering can be specified.
  • Versions of array, matrix, and vector where the desired element type can be specified.
@mtfishman
Copy link
Member Author

Also, these functions should be documented (some have docstrings, but aren't on the the website).

@mtfishman
Copy link
Member Author

Note that our functions array, matrix, and vector can also be implemented through Julia's convert API, i.e.:

array(A::ITensor) = convert(Array, A)

This API allows more control over the desired element type, etc.

Similarly, we can also define our itensor constructor function as:

itensor(T::Tensor) = convert(ITensor, T)

@mtfishman mtfishman changed the title Array conversion API ITensor, Tensor, and Array conversion API Oct 8, 2020
@mtfishman mtfishman self-assigned this Oct 8, 2020
@mtfishman mtfishman added this to the v0.3 milestone Oct 8, 2020
@mtfishman mtfishman added api Issues related to the interface enhancement New feature or request NDTensors Requires changes to the NDTensors.jl library. labels Oct 8, 2020
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 enhancement New feature or request NDTensors Requires changes to the NDTensors.jl library.
Projects
None yet
Development

No branches or pull requests

1 participant