Open Krastanov opened 10 months ago
This paper discusses a low latency table decoder. Among various interesting things, they have utilized syndrome compression.
LILLIPUT: https://arxiv.org/abs/2108.06569
Another paper presents a classical table error correcting decoder that corrects up to 5 errors.
In #212 we introduced the
TableDecoder
among other decoders. This is a lookup-table decoder for ECC. Currently, it supports tables of up-to-one error. It would be valuable to have a more general constructor for lookup tables that run through higher-weight errors as well. The size of the table will grow exponentially with the maximal error weight, but it can still be practical for small codes.