Implement CSC hierarchy
JohanMabille opened this issue · 1 comments
JohanMabille commented
The CSC hierarchy should implement sparse tensors (N-D) with CSC format. This should follow the same pattern as xmap_container classes:
xcsc_container
is a CRTP base class that gathers common implementation and API of inheriting classesxcsc_array
inherits fromxcsc_container
and implements the case where the number of dimensions is dynamicxcsc_tensor
inherits fromxcsc_container
and implements the case where the number of dimensions is static
JohanMabille commented
This has been implemented.