Description
It is unclear if the algorithm works in the cases in which the dimensions of the H_t
change at each time sample.
The dot product was suboptimally* implemented as one that loops in a list of elements of H_t
.
This happens in lines
DGCG_algorithm/src/operators.py
Lines 37 to 43 in 87d3d62
DGCG_algorithm/src/operators.py
Lines 55 to 64 in 87d3d62
As such, it requires to build an example and then test it.
This was implemented at the beginning with the purpose of it being able to tolerate this extension, but it has not been tested
so far.
[*]: The sub-optimality happens because we have a list and we are looping on each element of it, whereas it could be faster
to take advantage of numpy
inbuilt matrix multiplication and instead recast this elements as numpy arrays and respective
multiplication.
Activity
[-]Test the algorithm to examples with non constant frequencies.[/-][+]Test the algorithm with examples with non constant frequencies.[/+]