You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: