reed-solomon-erasure icon indicating copy to clipboard operation
reed-solomon-erasure copied to clipboard

[Looking for new owners/maintainers, see #88] Rust implementation of Reed-Solomon erasure coding

Results 19 reed-solomon-erasure issues
Sort by recently updated
recently updated
newest added

I made some updates to the fuzz harnesses so they can now compile and run, please let me know if it looks ok! I did find a test case that...

I'm writing an implementation of [Parity Volume Set Specification 2.0](http://parchive.sourceforge.net/docs/specifications/parity-volume-spec/article-spec.html). I'm a Rust novice, but it seems to me that your library as is won't work for me. If that's...

question

Travis CI is disabled for this repo and it would be easier for everyone involved to just migrate it over to GitHub Actions. The only non-trivial thing might be with...

enhancement
help wanted

https://github.com/darrenldl/rse-benchmark is recommended for benchmarking right now, but I think it would be better to just being avble to do `cargo bench` in this repo for testing various changes.

enhancement
help wanted
good first issue

Please reply here if you are interested in taking over maintenance of this package on github and crates.io, cheers.

Tagging main contributors/users I have in mind (apologies if I missed any): @burdges @drskalman @rphmeier To people above and also to (active) users and other contributors of this library: Sorry...

question

In `get_data_decode_matrix` the inverted matrix will always be added to the trie but nothing seems to every gets removed from the trie, so this can potentially consume a lot of...

bug
enhancement
help wanted

Is it possible for this crate to implement runtime SIMD detection, so that portable binaries with SIMD code inside can be published?

We invoke C code for SIMD in [galois_8.rs](https://github.com/darrenldl/reed-solomon-erasure/blob/master/src/galois_8.rs) but [galois_16.rs](https://github.com/darrenldl/reed-solomon-erasure/blob/master/src/galois_16.rs) merely uses galois_8.rs. There is an more bespoke approach to GF(2^16) in [Screaming Fast Galois Field Arithmetic Using Intel SIMD...

We have situations that we have recovered some data and parity shards but we are only interested in recovering a specific subset of the shards instead of the whole encoding...