Jerasure icon indicating copy to clipboard operation
Jerasure copied to clipboard

How to support GF(2^64) ?

Open xiezy0 opened this issue 1 year ago • 0 comments

w = 32 is the largest value supported by Jerasure. How should I support larger finite fields by cauchy matrix? (such as w = 64)

Use following functions:

int *cauchy original coding matrix(k, m, w); 
int *jerasure matrix to bitmatrix(k, m, w, matrix); 
void jerasure schedule encode(k, m, w, schedule, data ptrs, coding ptrs, size, packetsize); 
int jerasure schedule decode lazy(k, m, w bitmatrix, erasures, data ptrs, coding ptrs, size, packetsize, int
smart);

xiezy0 avatar Oct 20 '23 02:10 xiezy0