improve ``Tensor::extract()``
Description
The member function Tensor::extract()
could have its resilience and user interface improved regarding the lastest evolution of the class Tensor
.
Proposal
Let's have a Tensor
T
with dimensions [3,6,6,6]
.
- Currently, extracting the element
[0,0,0,0]
will result in an emptyTensor
. With the introduction of scalar and regarding other frameworks, the first element should be extracted instead. It is now possible thanks to the introduction of scalar in Tensor class. - The two member functions
Tensor::extract(const std::vector<std::size_t>& startCoord)
andTensor::extract(const std::vector<std::size_t>& startCoord, const std::vector<std::size_t>& dims)
should be merged into a single function with a default parameter as they are very similar to avoid code duplication. Moreover, it would help with the next section. - Add
Tensor::operator[]
a variadic operator that would mimic theTensor::extract
behaviour. If we use the Numpy (so Python) interface, extracting the sliceT[:2, 1:3, 4:, 5]
could be done withstd::pairs<std::size_t, std::size_t>
andstd::size_t
parametersT[(0,1), (1,2), (4,5), 5]
- By default, a dimension not mentionned in input parameters should be entirely extracted. The first extract function shows such behaviour but not the second one. It is not consistent and should be fixed.