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
This is the performance critical code. It would be cool if the inner-most loop here could be parallelized:
for _ in0..log_2_of_n {let w_m = omega.mod_pow_u32(n / (2* m));letmut k = 0;while k < n {letmut w = BFieldElement::one();for j in0..m {let u = x[(k + j)asusize];letmut v = x[(k + j + m)asusize];
v *= w;
x[(k + j)asusize] = u + v;
x[(k + j + m)asusize] = u - v;
w *= w_m;}
k += 2* m;}
m *= 2;}
The text was updated successfully, but these errors were encountered:
This is the performance critical code. It would be cool if the inner-most loop here could be parallelized:
The text was updated successfully, but these errors were encountered: