ITensor, Tensor, and Array conversion API #374
Labels
api
Issues related to the interface
enhancement
New feature or request
NDTensors
Requires changes to the NDTensors.jl library.
Milestone
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
andVector
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
andvector
Array
andMatrix
where the indices don't have to be specified.array
,matrix
, andvector
where the index ordering can be specified.array
,matrix
, andvector
where the desired element type can be specified.The text was updated successfully, but these errors were encountered: